@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

section:before,
section:after,
section ul:before,
section ul:after {
	display: table;
	content: ' ';
}
section:after,
section ul:after {
	clear: both;
}

[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
  display: none !important;
}

.ue-header {
  margin-left: 60px
}

.ue-header IMG {
  width: 60px;
}

.ue-header-mob {
  display: none;
}

@media screen and (max-width: 1196px) {
  .ue-header {
    margin-left: 60px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .main-colapse-btn {
    left: 5%;
    right: auto
  }

  .ue-header {
    display: none !important
  }

  .ue-header-mob {
    position: absolute;
    top: 15px !important;
    right: 5%;
    display: block;
  }

  .ue-header-mob IMG {
    width: 60px;
  }

  .header-main__logo-container .header-main__logo {
    margin-left: 15%
  }
}

/* -------  px to em  --------  */
/*

use example: 

a {
  font-size: px-to-em(14px); where base font size is default
}


a {
  font-size: px-to-em(14px, 18px); where base font size is 18px
}


*/
/* -------  pallete colors  --------  */
/*

use example: 

a {
  color: palette(pink);
  &:hover {
      color: palette(pink, light);
  }
}

*/
/* FONT PATH
* -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?v=4.2.0");
  src: url("//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"), url("//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.woff?v=4.2.0") format("woff"), url("//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf?v=4.2.0") format("truetype"), url("//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ad-container {
  display: none;
  margin-bottom: 10px;
}

.ad-container-mobile {
  display: block;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .header-wrapper-ad {
    height: 180px
  }

  .ad-container {
    display: block
  }

  .ad-container-mobile {
    display: none
  }
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.285714em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.142857em;
  list-style-type: none;
}

.fa-ul>li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.142857em;
  width: 2.142857em;
  top: 0.142857em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.857143em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.utils__fa--youtube-red::before {
  color: #d00037;
}

.utils__fa--facebook-blue::before {
  color: #00438c;
}

.utils__fa--rss-orange::before {
  color: #f07d00;
}

.utils__fa--pinterest-red::before {
  color: #cc1b1f;
}

.utils__fa--slider-nav-blue::before {
  color: rgba(46, 131, 196, 0.6);
}

.utils__fa--slider-show-all-grey::before {
  color: #7f7f7f;
}

.utils__fa--twitter-light-blue:before {
  color: #55acee;
}

.fa-stack-1doc4x {
  font-size: 1.4em;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1.375em;
}

.fa-stack-1doc8x {
  font-size: 1.8em;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

/* TODO: do wywalenia... wstawione poglądowo (jak chcesz się pobawić to import całości powyżej zakomentuj)
// import tylko konkretnych ikon (font i tak jest cały ściągany przez przeglądarkę)
// i lekka zabawa z rzeczami


// ustawienie prefixu "custom" font-a
$fa-css-prefix:       tvp;

// import sasów z font-awesoma-a
@import "../../../../components/font-awesome/scss/variables";
@import "../../../../components/font-awesome/scss/mixins";
@import "../../../../components/font-awesome/scss/path";
@import "../../../../components/font-awesome/scss/core";
@import "../../../../components/font-awesome/scss/larger";
@import "../../../../components/font-awesome/scss/fixed-width";
@import "../../../../components/font-awesome/scss/list";
@import "../../../../components/font-awesome/scss/bordered-pulled";
@import "../../../../components/font-awesome/scss/spinning";
@import "../../../../components/font-awesome/scss/rotated-flipped";
@import "../../../../components/font-awesome/scss/stacked";




//http://fontawesome.io/icon/list/
.fa-list:before { content: $fa-var-list; }
//http://fontawesome.io/icon/laptop/
.fa-laptop:before { content: $fa-var-laptop; }

// równie dobrze można jepnąć całkiem inne "nazwy"

.menu-Icon:before {content: $fa-var-list;}


/// przykłady:
// <i class="tvp tvp-laptop></i>
// <i class="tvp tvp-list"></i>
// <i class="tvp menu-Icon"></i>
*/
html {
  font-size: 100%;
  line-height: 1.5em;
}

* {
  font-weight: 300;
}

html,
body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

b {
  font-weight: 400;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background-color: #fff;
}

a {
  color: #1e6bb3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

body>header,
body>footer,
body>section {
  clear: both;
}

body header {
  font-size: 1.875em;
  font-weight: 300;
}

@media (min-width: 1198px) {
  body {
    max-width: 1198px;
    margin: 0 auto;
  }
}

@media (min-width: 1155px) {
  body.sub-page {
    max-width: 1155px !important;
    margin: 0 auto;
  }
}

.main__slider,
body>header,
.do-not-miss,
.news-section>section,
.news-section>section .information-section__entries,
.news-section>section .culture-section__entries,
.news-section>section .sport-section__entries,
body>div>footer .channels-list,
body>div>footer .footer-links-sections,
body>div>footer .footer-bottom-menu,
body>footer .channels-list,
body>footer .footer-links-sections,
body>footer .footer-bottom-menu {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: both;
}

@media (min-width: 768px) {

  .main__slider,
  body>header,
  .do-not-miss,
  .news-section>section,
  .news-section>section .information-section__entries,
  .news-section>section .culture-section__entries,
  .news-section>section .sport-section__entries,
  body>div>footer .channels-list,
  body>div>footer .footer-links-sections,
  body>div>footer .footer-bottom-menu,
  body>footer .channels-list,
  body>footer .footer-links-sections,
  body>footer .footer-bottom-menu {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: both;
  }
}

@media (min-width: 1024px) {

  .main__slider,
  body>header,
  .do-not-miss,
  .news-section>section,
  .news-section>section .information-section__entries,
  .news-section>section .culture-section__entries,
  .news-section>section .sport-section__entries,
  body>div>footer .channels-list,
  body>div>footer .footer-links-sections,
  body>div>footer .footer-bottom-menu,
  body>footer .channels-list,
  body>footer .footer-links-sections,
  body>footer .footer-bottom-menu {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: both;
  }
}

.do-not-miss .do-not-miss__header,
.do-not-miss .do-not-miss__slider,
.news-section,
.most-popular-services,
.fotostory-and-entertainment-section,
.now-playing,
.regional-broadcast,
.shop,
.episodes>.inner,
.episodes-medium>.inner,
.last__episode,
.we-recommend>.inner,
body>div>footer .social-links-list,
body>footer .social-links-list,
body>div>footer .channels-list>div,
body>footer .channels-list>div {
  width: 90.909091%;
  float: left;
  margin-right: -100%;
  margin-left: 4.545455%;
  clear: both;
}

@media (min-width: 768px) {

  .do-not-miss .do-not-miss__header,
  .do-not-miss .do-not-miss__slider,
  .news-section,
  .most-popular-services,
  .fotostory-and-entertainment-section,
  .now-playing,
  .regional-broadcast,
  .shop,
  .episodes>.inner,
  .episodes-medium>.inner,
  .last__episode,
  .we-recommend>.inner,
  body>div>footer .social-links-list,
  body>footer .social-links-list,
  body>div>footer .channels-list>div,
  body>footer .channels-list>div {
    width: 93.75%;
    float: left;
    margin-right: -100%;
    margin-left: 3.125%;
    clear: both;
  }
}

@media (min-width: 1024px) {

  .do-not-miss .do-not-miss__header,
  .do-not-miss .do-not-miss__slider,
  .news-section,
  .most-popular-services,
  .fotostory-and-entertainment-section,
  .now-playing,
  .regional-broadcast,
  .shop,
  .episodes>.inner,
  .episodes-medium>.inner,
  .last__episode,
  .we-recommend>.inner,
  body>div>footer .social-links-list,
  body>footer .social-links-list,
  body>div>footer .channels-list>div,
  body>footer .channels-list>div {
    width: 96.774194%;
    float: left;
    margin-right: -100%;
    margin-left: 1.612903%;
    clear: both;
  }
}

body>header>.header-main {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: both;
}

@media (min-width: 768px) {
  body>header>.header-main {
    width: 93.75%;
    float: left;
    margin-right: -100%;
    margin-left: 3.125%;
    clear: both;
  }
}

@media (min-width: 1024px) {
  body>header>.header-main {
    width: 96.774194%;
    float: left;
    margin-right: -100%;
    margin-left: 1.612903%;
    clear: both;
  }
}

.most-popular-services header,
.fotostory-and-entertainment-section .fotostory-section .fotostory-section__header,
.fotostory-and-entertainment-section .entertainment-section .entertainment-section__header {
  font-size: 1.875em;
  font-weight: 300;
  margin-bottom: 12px;
}

.now-playing>header,
.shop>header {
  position: relative;
  line-height: 1.250em;
}

.now-playing>header>a,
.shop>header>a {
  display: none;
}

@media (min-width: 768px) {

  .now-playing>header>a,
  .shop>header>a {
    display: block;
    font-size: 0.533em;
    line-height: 1.875em;
    float: right;
  }

  .now-playing>header>a>span,
  .shop>header>a>span {
    margin-left: 20px;
  }
}

.ir-32 {
  position: relative;
  height: 0;
  padding-top: 66.666667%;
  width: 100%;
}

.ir-32>* {
  display: block;
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  margin: 0;
  padding: 0;
}

.ir-43 {
  position: relative;
  height: 0;
  padding-top: 75%;
  width: 100%;
}

.ir-43>* {
  display: block;
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  margin: 0;
  padding: 0;
}

.ir-169 {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  width: 100%;
}

.ir-169>* {
  display: block;
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  margin: 0;
  padding: 0;
}

#background-wallpaper>.site-wrapper {
  background-color: white
}

.nav--horizontal,
.header-main__nav-main,
.header-main__nav-tech,
.header-main__nav-circles,
.header__submenu-nav,
.news-section>section .information-section__menu,
.news-section>section .sport-section__menu,
.nav--horizontal li>a,
.header-main__nav-main li>a,
.header-main__nav-tech li>a,
.header-main__nav-circles li>a,
.header__submenu-nav li>a,
.news-section>section .information-section__menu li>a,
.news-section>section .sport-section__menu li>a,
.nav--horizontal>ul,
.header-main__nav-main>ul,
.header-main__nav-tech>ul,
.header-main__nav-circles>ul,
.header__submenu-nav>ul,
.news-section>section .information-section__menu>ul,
.news-section>section .sport-section__menu>ul,
.nav--horizontal>ul li>a,
.header-main__nav-main>ul li>a,
.header-main__nav-tech>ul li>a,
.header-main__nav-circles>ul li>a,
.header__submenu-nav>ul li>a,
.news-section>section .information-section__menu>ul li>a,
.news-section>section .sport-section__menu>ul li>a {
  display: block;
}

@media (min-width: 768px) {

  .header-main__nav-tech {
  	margin-bottom: -20px;
  }

  .nav--horizontal li,
  .header-main__nav-main li,
  .header-main__nav-tech li,
  .header-main__nav-circles li,
  .header__submenu-nav li,
  .news-section>section .information-section__menu li,
  .news-section>section .sport-section__menu li,
  .nav--horizontal>ul li,
  .header-main__nav-main>ul li,
  .header-main__nav-tech>ul li,
  .header-main__nav-circles>ul li,
  .header__submenu-nav>ul li,
  .news-section>section .information-section__menu>ul li,
  .news-section>section .sport-section__menu>ul li {
    position: relative;
  }

  .nav--horizontal li>ul,
  .header-main__nav-main li>ul,
  .header-main__nav-tech li>ul,
  .header-main__nav-circles li>ul,
  .header__submenu-nav li>ul,
  .news-section>section .information-section__menu li>ul,
  .news-section>section .sport-section__menu li>ul,
  .nav--horizontal>ul li>ul,
  .header-main__nav-main>ul li>ul,
  .header-main__nav-tech>ul li>ul,
  .header-main__nav-circles>ul li>ul,
  .header__submenu-nav>ul li>ul,
  .news-section>section .information-section__menu>ul li>ul,
  .news-section>section .sport-section__menu>ul li>ul {
    position: absolute;
    display: none;
  }

  .nav--horizontal li.hover>ul,
  .header-main__nav-main li.hover>ul,
  .header-main__nav-tech li.hover>ul,
  .header-main__nav-circles li.hover>ul,
  .header__submenu-nav li.hover>ul,
  .news-section>section .information-section__menu li.hover>ul,
  .news-section>section .sport-section__menu li.hover>ul,
  .nav--horizontal>ul li.hover>ul,
  .header-main__nav-main>ul li.hover>ul,
  .header-main__nav-tech>ul li.hover>ul,
  .header-main__nav-circles>ul li.hover>ul,
  .header__submenu-nav>ul li.hover>ul,
  .news-section>section .information-section__menu>ul li.hover>ul,
  .news-section>section .sport-section__menu>ul li.hover>ul {
    display: block;
  }
}

.nav--horizontal>ul>li,
.header-main__nav-main>ul>li,
.header-main__nav-tech>ul>li,
.header-main__nav-circles>ul>li,
.header__submenu-nav>ul>li,
.news-section>section .information-section__menu>ul>li,
.news-section>section .sport-section__menu>ul>li,
.nav--horizontal>a,
.header-main__nav-main>a,
.header-main__nav-tech>a,
.header-main__nav-circles>a,
.header__submenu-nav>a,
.news-section>section .information-section__menu>a,
.news-section>section .sport-section__menu>a {
  display: inline-block;
}

.nav--hide-show.show,
.header-main__nav-tech .show.nav-tech__availability-submenu,
.header-main__nav-tech .show.nav-tech__log-submenu {
  height: auto;
  overflow: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10000);
  opacity: 100;
}

.nav--hide-show.hide,
.header-main__nav-tech .hide.nav-tech__availability-submenu,
.header-main__nav-tech .hide.nav-tech__log-submenu {
  display: none;
}

.nav--colapsed.in {
  height: auto;
  overflow: visible;
}

.nav--colapsed.colapsed {
  height: 1px;
  overflow: hidden;
}

.nav--colapsed.colapsing {
  height: auto;
  overflow: hidden;
}

.utils__youtube-icon,
.utils__facebook-icon,
.utils__pinterest-icon,
.utils__rss-icon {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.utils__icon-2x {
  font-size: 2em;
}

.utils__icon-3x {
  font-size: 3em;
}

.utils__icon-4x {
  font-size: 4em;
}

.utils__icon-5x {
  font-size: 5em;
}

.utils__youtube-icon:before {
  content: "\f167";
}

.utils__facebook-icon:before {
  content: "\f09a";
}

.utils__pinterest-icon:before {
  content: "\f0d2";
}

.utils__rss-icon:before {
  content: "\f09e";
}

/* poprawka wysrodkowania */
.fa-stack-1doc4x.fa-angle-left:before {
  margin-left: -3px;
}

.fa-stack-1doc4x.fa-angle-right:before {
  margin-right: -3px;
}

/* poprawki w pionie */
.header-main__nav-circles .fa-stack-1x.fa-list {
  top: -1px;
}

.header-main__nav-circles .fa-stack-1x.fa-laptop {
  top: -3px;
}

.header-main__nav-circles .fa-stack-1x.fa-info {
  top: -3px;
}

.header-main__nav-circles .fa-stack-1x.fa-user {
  top: -4px;
}

.header-main__nav-circles .fa-stack-1x.fa-sign-out {
  top: -3px;
}

.logo-antena-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 57px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-antena-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: 0 0;
    height: 22px;
    width: 57px;
  }
}

@media print {
  .logo-antena-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-antena-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/antena-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 57px;
  }
}

.logo-antena-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: 0 0;
  height: 44px;
  width: 114px;
}

.logo-belsat-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -77px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 56px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-belsat-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -67px 0;
    height: 22px;
    width: 56px;
  }
}

@media print {
  .logo-belsat-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-belsat-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/belsat-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 56px;
  }
}

.logo-belsat-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -134px 0;
  height: 44px;
  width: 112px;
}

.logo-tvp-abc-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -153px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 30px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-abc-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -133px 0;
    height: 22px;
    width: 30px;
  }
}

@media print {
  .logo-tvp-abc-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-abc-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-abc-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 30px;
  }
}

.logo-tvp-abc-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -266px 0;
  height: 44px;
  width: 60px;
}

.logo-tvp-bialystok-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -203px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-bialystok-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -173px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-bialystok-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-bialystok-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-bialystok-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-bialystok-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -346px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-bydgoszcz-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -260px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-bydgoszcz-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -220px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-bydgoszcz-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-bydgoszcz-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-bydgoszcz-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-bydgoszcz-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -440px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-gdansk-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -317px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-gdansk-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -267px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-gdansk-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-gdansk-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-gdansk-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-gdansk-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -534px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-gorzow-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -374px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 30px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-gorzow-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -314px 0;
    height: 22px;
    width: 30px;
  }
}

@media print {
  .logo-tvp-gorzow-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-gorzow-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-gorzow-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 30px;
  }
}

.logo-tvp-gorzow-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -628px 0;
  height: 44px;
  width: 60px;
}

.logo-tvp-hd-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -424px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 86px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-hd-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -354px 0;
    height: 22px;
    width: 85px;
  }
}

@media print {
  .logo-tvp-hd-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-hd-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-hd-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 86px;
  }
}

.logo-tvp-hd-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -708px 0;
  height: 44px;
  width: 170px;
}

.logo-tvp-historia-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -530px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 51px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-historia-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -449px 0;
    height: 22px;
    width: 51px;
  }
}

@media print {
  .logo-tvp-historia-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-historia-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-historia-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 51px;
  }
}

.logo-tvp-historia-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -898px 0;
  height: 44px;
  width: 102px;
}

.logo-tvp-info-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -601px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 104px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-info-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -510px 0;
    height: 22px;
    width: 104px;
  }
}

@media print {
  .logo-tvp-info-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-info-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-info-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 104px;
  }
}

.logo-tvp-info-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -1020px 0;
  height: 44px;
  width: 208px;
}

.logo-tvp-katowice-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -725px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-katowice-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -624px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-katowice-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-katowice-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-katowice-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-katowice-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -1248px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-kielce-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -782px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-kielce-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -671px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-kielce-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-kielce-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-kielce-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-kielce-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -1342px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-krakow-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -839px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-krakow-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -718px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-krakow-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-krakow-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-krakow-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-krakow-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -1436px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-kultura-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -896px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 45px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-kultura-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -765px 0;
    height: 22px;
    width: 44.5px;
  }
}

@media print {
  .logo-tvp-kultura-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-kultura-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-kultura-32.png?1428665842');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 45px;
  }
}

.logo-tvp-kultura-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -1530px 0;
  height: 44px;
  width: 89px;
}

.logo-tvp-lodz-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -961px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-lodz-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -820px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-lodz-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-lodz-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-lodz-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-lodz-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -1639px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-lublin-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1018px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-lublin-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -867px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-lublin-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-lublin-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-lublin-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-lublin-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -1733px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-olsztyn-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1075px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-olsztyn-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -914px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-olsztyn-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-olsztyn-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-olsztyn-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-olsztyn-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -1827px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-opole-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1132px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-opole-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -961px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-opole-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-opole-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-opole-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-opole-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -1921px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-parlament-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1189px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 146px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-parlament-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1008px 0;
    height: 22px;
    width: 146px;
  }
}

@media print {
  .logo-tvp-parlament-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-parlament-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-parlament-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 146px;
  }
}

.logo-tvp-parlament-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -2015px 0;
  height: 44px;
  width: 292px;
}

.logo-tvp-polonia-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1355px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 41px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-polonia-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1164px 0;
    height: 22px;
    width: 41px;
  }
}

@media print {
  .logo-tvp-polonia-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-polonia-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-polonia-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 41px;
  }
}

.logo-tvp-polonia-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -2327px 0;
  height: 44px;
  width: 82px;
}

.logo-tvp-poznan-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1416px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-poznan-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1215px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-poznan-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-poznan-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-poznan-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-poznan-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -2429px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-regionalna-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1473px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 46px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-regionalna-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1262px 0;
    height: 22px;
    width: 46px;
  }
}

@media print {
  .logo-tvp-regionalna-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-regionalna-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-regionalna-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 46px;
  }
}

.logo-tvp-regionalna-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -2523px 0;
  height: 44px;
  width: 92px;
}

.logo-tvp-rozrywka-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1539px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 40px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-rozrywka-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1318px 0;
    height: 22px;
    width: 39px;
  }
}

@media print {
  .logo-tvp-rozrywka-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-rozrywka-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-rozrywka-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 40px;
  }
}

.logo-tvp-rozrywka-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -2635px 0;
  height: 44px;
  width: 78px;
}

.logo-tvp-rzeszow-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1599px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-rzeszow-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1367px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-rzeszow-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-rzeszow-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-rzeszow-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-rzeszow-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -2733px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-seriale-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1656px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 44px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-seriale-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1414px 0;
    height: 22px;
    width: 45px;
  }
}

@media print {
  .logo-tvp-seriale-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-seriale-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-seriale-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 44px;
  }
}

.logo-tvp-seriale-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -2827px 0;
  height: 44px;
  width: 90px;
}

.logo-tvp-sport-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1720px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 65px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-sport-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1469px 0;
    height: 22px;
    width: 66px;
  }
}

@media print {
  .logo-tvp-sport-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-sport-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-sport-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 65px;
  }
}

.logo-tvp-sport-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -2937px 0;
  height: 44px;
  width: 132px;
}

.logo-tvp-szczecin-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1805px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-szczecin-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1545px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-szczecin-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-szczecin-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-szczecin-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-szczecin-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -3089px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp-warszawa-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1862px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-warszawa-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1592px 0;
    height: 22px;
    width: 37.5px;
  }
}

@media print {
  .logo-tvp-warszawa-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-warszawa-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-warszawa-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-warszawa-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -3183px 0;
  height: 44px;
  width: 75px;
}

.logo-tvp-wroclaw-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1919px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp-wroclaw-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1639px 0;
    height: 22px;
    width: 37px;
  }
}

@media print {
  .logo-tvp-wroclaw-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp-wroclaw-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp-wroclaw-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 37px;
  }
}

.logo-tvp-wroclaw-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -3278px 0;
  height: 44px;
  width: 74px;
}

.logo-tvp1-hd-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -1976px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 77px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp1-hd-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1686px 0;
    height: 22px;
    width: 77px;
  }
}

@media print {
  .logo-tvp1-hd-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp1-hd-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp1-hd-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 77px;
  }
}

.logo-tvp1-hd-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -3372px 0;
  height: 44px;
  width: 154px;
}

.logo-tvp2-hd-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -2073px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 80px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvp2-hd-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-size: 1957px 28px;
    background-position: -1773px 0;
    height: 22px;
    width: 80px;
  }
}

@media print {
  .logo-tvp2-hd-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvp2-hd-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvp2-hd-32.png?1408347694');
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 80px;
  }
}

.logo-tvp2-hd-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -3546px 0;
  height: 44px;
  width: 160px;
}

.logo-tvppl-54 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c.png');
  background-position: -2173px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 54px;
  width: 161px;
}

.logo-tvppl-54_flaga {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-sf464a8634c_flaga.png?v=2') !important;
  width: 180px !important;
  background-position: -2169px 0 !important;
  height: 70px !important;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvppl-54 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
    background-position: -3726px 0;
    height: 56px;
    width: 168px;
  }

  .logo-tvppl-54_flaga {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192_flaga.png') !important;
  }
}

@media print {
  .logo-tvppl-54 {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvppl-54:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo/tvppl-54.png?1408347694');
    display: inline-block;
    height: 54px;
    vertical-align: middle;
    width: 161px;
  }
}

.logo-tvppl-54.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-x2-s787129a192.png');
  background-position: -3726px 0;
  height: 56px;
  width: 168px;
}

.logo-tvppl-wielkanoc {
  background-image: url('//s.tvp.pl/files/tvp.pl/images/logo/logo-wielkanoc.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 65px;
  width: 202px;
  text-indent: 999px;
  margin-top: 10px;
}

.logo-tvppl-13grudnia {
  background-image: url('//s.tvp.pl/files/tvp.pl/images/logo/logo-13grudnia.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 54px;
  width: 165px;
  text-indent: 999px;
  margin-top: 10px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .logo-tvppl-wielkanoc {
    background-image: url('//s.tvp.pl/files/tvp.pl/images/logo/logo-wielkanoc.png');
    background-size: 87px 28px;
    background-position: 0 0;
    height: 28px;
    width: 87px;
  }

  .logo-tvppl-13grudnia {
    background-image: url('//s.tvp.pl/files/tvp.pl/images/logo/logo-13grudnia.png');
    background-size: 71px 23px;
    background-position: 0 0;
    height: 23px;
    width: 71px;
  }
}

@media print {
  .logo-tvppl-wielkanoc {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvppl-wielkanoc:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/images/logo/logo-wielkanoc.png');
    display: inline-block;
    height: 65px;
    vertical-align: middle;
    width: 202px;
  }

  .logo-tvppl-13grudnia {
    display: inline-block;
    vertical-align: middle;
  }

  .logo-tvppl-13grudnia:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/images/logo/logo-13grudnia.png');
    display: inline-block;
    height: 54px;
    vertical-align: middle;
    width: 165px;
  }
}

.lna-belsat-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 30px;
  width: 92px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-belsat-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: 0 0;
    height: 30px;
    width: 92px;
  }
}

@media print {
  .lna-belsat-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-belsat-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/belsat-32.png?1408347694');
    display: inline-block;
    height: 30px;
    vertical-align: middle;
    width: 92px;
  }
}

.lna-belsat-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: 0 0;
  height: 60px;
  width: 184px;
}

.lna-tvp-abc-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -112px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 28px;
  width: 34px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp-abc-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -94px 0;
    height: 28px;
    width: 34px;
  }
}

@media print {
  .lna-tvp-abc-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp-abc-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp-abc-32.png?1408347694');
    display: inline-block;
    height: 28px;
    vertical-align: middle;
    width: 34px;
  }
}

.lna-tvp-abc-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -204px 0;
  height: 56px;
  width: 68px;
}

.lna-tvp-hd-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -166px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 24px;
  width: 92px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp-hd-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -132px 0;
    height: 23px;
    width: 87.5px;
  }
}

@media print {
  .lna-tvp-hd-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp-hd-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp-hd-32.png?1408347694');
    display: inline-block;
    height: 24px;
    vertical-align: middle;
    width: 92px;
  }
}

.lna-tvp-hd-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -292px 0;
  height: 46px;
  width: 175px;
}

.lna-tvp-historia-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -278px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 26px;
  width: 56px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp-historia-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -223px 0;
    height: 26px;
    width: 56px;
  }
}

@media print {
  .lna-tvp-historia-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp-historia-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp-historia-32.png?1408347694');
    display: inline-block;
    height: 26px;
    vertical-align: middle;
    width: 56px;
  }
}

.lna-tvp-historia-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -487px 0;
  height: 52px;
  width: 112px;
}

.lna-tvp-info-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -354px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 20px;
  width: 96px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp-info-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -282px 0;
    height: 20px;
    width: 96px;
  }
}

@media print {
  .lna-tvp-info-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp-info-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp-info-32.png?1408347694');
    display: inline-block;
    height: 20px;
    vertical-align: middle;
    width: 96px;
  }
}

.lna-tvp-info-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -619px 0;
  height: 40px;
  width: 192px;
}

.lna-tvp-kultura-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -470px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 32px;
  width: 65px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp-kultura-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -381px 0;
    height: 32px;
    width: 65px;
  }
}

@media print {
  .lna-tvp-kultura-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp-kultura-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp-kultura-32.png?1428665842');
    display: inline-block;
    height: 32px;
    vertical-align: middle;
    width: 65px;
  }
}

.lna-tvp-kultura-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -831px 0;
  height: 64px;
  width: 130px;
}

.lna-tvp-polonia-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -555px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 32px;
  width: 62px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp-polonia-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -450px 0;
    height: 32px;
    width: 60px;
  }
}

@media print {
  .lna-tvp-polonia-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp-polonia-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp-polonia-32.png?1408347694');
    display: inline-block;
    height: 32px;
    vertical-align: middle;
    width: 62px;
  }
}

.lna-tvp-polonia-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -981px 0;
  height: 64px;
  width: 120px;
}

.lna-tvp-regionalna-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -637px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 32px;
  width: 64px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp-regionalna-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -561px 0;
    height: 32px;
    width: 64px;
  }
}

@media print {
  .lna-tvp-regionalna-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp-regionalna-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp-regionalna-32.png?1408347694');
    display: inline-block;
    height: 32px;
    vertical-align: middle;
    width: 64px;
  }
}

.lna-tvp-regionalna-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -1121px 0;
  height: 64px;
  width: 128px;
}

.lna-tvp-rozrywka-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -721px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 68px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp-rozrywka-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -582px 0;
    height: 39px;
    width: 67px;
  }
}

@media print {
  .lna-tvp-rozrywka-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp-rozrywka-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp-rozrywka-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 68px;
  }
}

.lna-tvp-rozrywka-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -1269px 0;
  height: 78px;
  width: 134px;
}

.lna-tvp-seriale-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -809px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 80px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp-seriale-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -652px 0;
    height: 40px;
    width: 81px;
  }
}

@media print {
  .lna-tvp-seriale-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp-seriale-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp-seriale-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 80px;
  }
}

.lna-tvp-seriale-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -1423px 0;
  height: 80px;
  width: 162px;
}

.lna-tvp-sport-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -909px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 30px;
  width: 74px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp-sport-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -803px 0;
    height: 30px;
    width: 73px;
  }
}

@media print {
  .lna-tvp-sport-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp-sport-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp-sport-32.png?1408347694');
    display: inline-block;
    height: 30px;
    vertical-align: middle;
    width: 74px;
  }
}

.lna-tvp-sport-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -1605px 0;
  height: 60px;
  width: 146px;
}

.lna-tvp1-hd-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -1003px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 26px;
  width: 92px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp1-hd-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -813px 0;
    height: 26px;
    width: 91px;
  }
}

@media print {
  .lna-tvp1-hd-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp1-hd-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp1-hd-32.png?1408347694');
    display: inline-block;
    height: 26px;
    vertical-align: middle;
    width: 92px;
  }
}

.lna-tvp1-hd-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -1771px 0;
  height: 52px;
  width: 182px;
}

.lna-tvp2-hd-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-s0d278375b7.png');
  background-position: -1115px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 26px;
  width: 92px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lna-tvp2-hd-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
    background-size: 1088.5px 40px;
    background-position: -906px 0;
    height: 26px;
    width: 92px;
  }
}

@media print {
  .lna-tvp2-hd-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lna-tvp2-hd-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-na-antenie/tvp2-hd-32.png?1408347694');
    display: inline-block;
    height: 26px;
    vertical-align: middle;
    width: 92px;
  }
}

.lna-tvp2-hd-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-na-antenie-x2-s9e40204f6c.png');
  background-position: -1973px 0;
  height: 52px;
  width: 184px;
}

.lf-belsat-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 30px;
  width: 92px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-belsat-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: 0 0;
    height: 30px;
    width: 92px;
  }
}

@media print {
  .lf-belsat-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-belsat-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/belsat-32.png?1408347694');
    display: inline-block;
    height: 30px;
    vertical-align: middle;
    width: 92px;
  }
}

.lf-belsat-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: 0 0;
  height: 60px;
  width: 184px;
}

.lf-tvp-abc-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -112px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 28px;
  width: 34px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-abc-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -102px 0;
    height: 28px;
    width: 34px;
  }
}

@media print {
  .lf-tvp-abc-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-abc-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-abc-32.png?1408347694');
    display: inline-block;
    height: 28px;
    vertical-align: middle;
    width: 34px;
  }
}

.lf-tvp-abc-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -204px 0;
  height: 56px;
  width: 68px;
}

.lf-tvp-hd-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -166px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 18px;
  width: 70px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-hd-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -146px 0;
    height: 16px;
    width: 61px;
  }
}

@media print {
  .lf-tvp-hd-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-hd-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-hd-32.png?1408347694');
    display: inline-block;
    height: 18px;
    vertical-align: middle;
    width: 70px;
  }
}

.lf-tvp-hd-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -292px 0;
  height: 32px;
  width: 122px;
}

.lf-tvp-historia-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -256px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 26px;
  width: 56px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-historia-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -217px 0;
    height: 26px;
    width: 56px;
  }
}

@media print {
  .lf-tvp-historia-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-historia-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-historia-32.png?1408347694');
    display: inline-block;
    height: 26px;
    vertical-align: middle;
    width: 56px;
  }
}

.lf-tvp-historia-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -434px 0;
  height: 52px;
  width: 112px;
}

.lf-tvp-info-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -332px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 17px;
  width: 82px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-info-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -283px 0;
    height: 17px;
    width: 82px;
  }
}

@media print {
  .lf-tvp-info-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-info-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-info-32.png?1408347694');
    display: inline-block;
    height: 17px;
    vertical-align: middle;
    width: 82px;
  }
}

.lf-tvp-info-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -566px 0;
  height: 34px;
  width: 164px;
}

.lf-tvp-kultura-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -434px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 28px;
  width: 57px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-kultura-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -375px 0;
    height: 28px;
    width: 57px;
  }
}

@media print {
  .lf-tvp-kultura-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-kultura-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-kultura-32.png?1428665842');
    display: inline-block;
    height: 28px;
    vertical-align: middle;
    width: 57px;
  }
}

.lf-tvp-kultura-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -750px 0;
  height: 56px;
  width: 114px;
}

.lf-tvp-parlament-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -511px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 16px;
  width: 108px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-parlament-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -442px 0;
    height: 16px;
    width: 107.5px;
  }
}

@media print {
  .lf-tvp-parlament-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-parlament-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-parlament-32.png?1408347694');
    display: inline-block;
    height: 16px;
    vertical-align: middle;
    width: 108px;
  }
}

.lf-tvp-parlament-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -884px 0;
  height: 32px;
  width: 215px;
}

.lf-tvp-polonia-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -639px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 28px;
  width: 54px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-polonia-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -560px 0;
    height: 28px;
    width: 53px;
  }
}

@media print {
  .lf-tvp-polonia-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-polonia-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-polonia-32.png?1408347694');
    display: inline-block;
    height: 28px;
    vertical-align: middle;
    width: 54px;
  }
}

.lf-tvp-polonia-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -1119px 0;
  height: 56px;
  width: 106px;
}

.lf-tvp-regionalna-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -713px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 32px;
  width: 64px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-regionalna-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -623px 0;
    height: 32px;
    width: 64px;
  }
}

@media print {
  .lf-tvp-regionalna-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-regionalna-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-regionalna-32.png?1408347694');
    display: inline-block;
    height: 32px;
    vertical-align: middle;
    width: 64px;
  }
}

.lf-tvp-regionalna-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -1245px 0;
  height: 64px;
  width: 128px;
}

.lf-tvp-rozrywka-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -797px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 28px;
  width: 48px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-rozrywka-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -697px 0;
    height: 28px;
    width: 48px;
  }
}

@media print {
  .lf-tvp-rozrywka-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-rozrywka-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-rozrywka-32.png?1408347694');
    display: inline-block;
    height: 28px;
    vertical-align: middle;
    width: 48px;
  }
}

.lf-tvp-rozrywka-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -1393px 0;
  height: 56px;
  width: 96px;
}

.lf-tvp-seriale-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -865px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 28px;
  width: 58px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-seriale-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -755px 0;
    height: 28px;
    width: 57px;
  }
}

@media print {
  .lf-tvp-seriale-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-seriale-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-seriale-32.png?1408347694');
    display: inline-block;
    height: 28px;
    vertical-align: middle;
    width: 58px;
  }
}

.lf-tvp-seriale-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -1509px 0;
  height: 56px;
  width: 114px;
}

.lf-tvp-sport-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -943px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 32px;
  width: 86px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp-sport-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -822px 0;
    height: 32px;
    width: 86px;
  }
}

@media print {
  .lf-tvp-sport-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp-sport-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp-sport-32.png?1408347694');
    display: inline-block;
    height: 32px;
    vertical-align: middle;
    width: 86px;
  }
}

.lf-tvp-sport-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -1643px 0;
  height: 64px;
  width: 172px;
}

.lf-tvp1-hd-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -1049px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 18px;
  width: 64px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp1-hd-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -918px 0;
    height: 18px;
    width: 63px;
  }
}

@media print {
  .lf-tvp1-hd-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp1-hd-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp1-hd-32.png?1408347694');
    display: inline-block;
    height: 18px;
    vertical-align: middle;
    width: 64px;
  }
}

.lf-tvp1-hd-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -1835px 0;
  height: 36px;
  width: 126px;
}

.lf-tvp2-hd-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-s0ed8d8330e.png');
  background-position: -1133px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 18px;
  width: 64px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lf-tvp2-hd-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
    background-size: 1064.5px 32px;
    background-position: -991px 0;
    height: 18px;
    width: 64px;
  }
}

@media print {
  .lf-tvp2-hd-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lf-tvp2-hd-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-footer/tvp2-hd-32.png?1408347694');
    display: inline-block;
    height: 18px;
    vertical-align: middle;
    width: 64px;
  }
}

.lf-tvp2-hd-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-footer-x2-s3aa359ada3.png');
  background-position: -1981px 0;
  height: 36px;
  width: 128px;
}

.lnar-tvp-bialystok-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-bialystok-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: 0 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-bialystok-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-bialystok-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-bialystok-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-bialystok-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: 0 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-bydgoszcz-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -86px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-bydgoszcz-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -76px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-bydgoszcz-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-bydgoszcz-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-bydgoszcz-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-bydgoszcz-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -152px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-gdansk-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -172px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-gdansk-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -152px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-gdansk-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-gdansk-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-gdansk-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-gdansk-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -304px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-gorzow-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -258px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-gorzow-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -228px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-gorzow-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-gorzow-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-gorzow-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-gorzow-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -456px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-katowice-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -344px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-katowice-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -304px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-katowice-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-katowice-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-katowice-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-katowice-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -608px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-kielce-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -430px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-kielce-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -380px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-kielce-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-kielce-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-kielce-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-kielce-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -760px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-krakow-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -516px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-krakow-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -456px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-krakow-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-krakow-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-krakow-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-krakow-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -912px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-lodz-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -602px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-lodz-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -532px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-lodz-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-lodz-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-lodz-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-lodz-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -1064px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-lublin-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -688px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-lublin-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -608px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-lublin-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-lublin-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-lublin-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-lublin-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -1216px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-olsztyn-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -774px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-olsztyn-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -684px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-olsztyn-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-olsztyn-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-olsztyn-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-olsztyn-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -1368px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-opole-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -860px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-opole-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -760px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-opole-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-opole-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-opole-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-opole-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -1520px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-poznan-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -946px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-poznan-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -836px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-poznan-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-poznan-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-poznan-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-poznan-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -1672px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-rzeszow-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -1032px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-rzeszow-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -912px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-rzeszow-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-rzeszow-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-rzeszow-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-rzeszow-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -1824px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-szczecin-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -1118px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-szczecin-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -988px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-szczecin-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-szczecin-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-szczecin-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-szczecin-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -1976px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-warszawa-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -1204px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-warszawa-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -1064px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-warszawa-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-warszawa-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-warszawa-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-warszawa-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -2128px 0;
  height: 78px;
  width: 132px;
}

.lnar-tvp-wroclaw-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-sf4949ddbcc.png');
  background-position: -1290px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 39px;
  width: 66px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .lnar-tvp-wroclaw-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
    background-size: 1216px 39px;
    background-position: -1140px 0;
    height: 39px;
    width: 66px;
  }
}

@media print {
  .lnar-tvp-wroclaw-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .lnar-tvp-wroclaw-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/logo-regionalne/tvp-wroclaw-32.png?1408347694');
    display: inline-block;
    height: 39px;
    vertical-align: middle;
    width: 66px;
  }
}

.lnar-tvp-wroclaw-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/logo-regionalne-x2-s7353486f27.png');
  background-position: -2280px 0;
  height: 78px;
  width: 132px;
}

.icon-ad-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -1143px -21px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 11px;
  width: 19px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-ad-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -983px -17px;
    height: 10.5px;
    width: 20.5px;
  }
}

@media print {
  .icon-ad-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-ad-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/ad-12.png?1408347695');
    display: inline-block;
    height: 11px;
    vertical-align: middle;
    width: 19px;
  }
}

.icon-ad-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1966px -34px;
  height: 21px;
  width: 41px;
}

.icon-bip-128 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -25px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 128px;
  width: 227px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-bip-128 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -23px 0;
    height: 64px;
    width: 113.5px;
  }
}

@media print {
  .icon-bip-128 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-bip-128:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/bip-128.png?1408347694');
    display: inline-block;
    height: 128px;
    vertical-align: middle;
    width: 227px;
  }
}

.icon-bip-128.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -45px 0;
  height: 128px;
  width: 227px;
}

.icon-bip-256 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -257px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 256px;
  width: 455px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-bip-256 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -139px 0;
    height: 256px;
    width: 454.5px;
  }
}

@media print {
  .icon-bip-256 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-bip-256:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/bip-256.png?1408347694');
    display: inline-block;
    height: 256px;
    vertical-align: middle;
    width: 455px;
  }
}

.icon-bip-256.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -277px 0;
  height: 512px;
  width: 909px;
}

.icon-bip-32 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -717px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 32px;
  width: 57px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-bip-32 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -596px 0;
    height: 32px;
    width: 57px;
  }
}

@media print {
  .icon-bip-32 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-bip-32:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/bip-32.png?1408347694');
    display: inline-block;
    height: 32px;
    vertical-align: middle;
    width: 57px;
  }
}

.icon-bip-32.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1191px 0;
  height: 64px;
  width: 114px;
}

.icon-bip-64 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -779px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 64px;
  width: 114px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-bip-64 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -655px 0;
    height: 64px;
    width: 113.5px;
  }
}

@media print {
  .icon-bip-64 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-bip-64:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/bip-64.png?1408347694');
    display: inline-block;
    height: 64px;
    vertical-align: middle;
    width: 114px;
  }
}

.icon-bip-64.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1310px 0;
  height: 128px;
  width: 227px;
}

.icon-camera-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -898px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 12px;
  width: 10px;
  cursor: pointer;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-camera-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -771px 0;
    height: 12px;
    width: 10px;
  }
}

@media print {
  .icon-camera-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-camera-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/camera-12.png?1408347694');
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 10px;
  }
}

.icon-camera-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1542px 0;
  height: 24px;
  width: 20px;
}

.icon-captions-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -1168px -21px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 11px;
  width: 9px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-captions-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -1013px -17px;
    height: 10.5px;
    width: 9px;
  }
}

@media print {
  .icon-captions-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-captions-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/captions-12.png?1408347695');
    display: inline-block;
    height: 11px;
    vertical-align: middle;
    width: 9px;
  }
}

.icon-captions-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -2026px -34px;
  height: 21px;
  width: 18px;
}

.icon-gbsubtitle-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -932px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 12px;
  width: 24px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-gbsubtitle-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -800px 0;
    height: 12px;
    width: 24px;
  }
}

@media print {
  .icon-gbsubtitle-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-gbsubtitle-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/gbsubtitle-12.png?1413530981');
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 24px;
  }
}

.icon-gbsubtitle-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1600px 0;
  height: 24px;
  width: 48px;
}

.icon-ishit-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -961px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 12px;
  width: 33px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-ishit-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -827px 0;
    height: 12px;
    width: 33px;
  }
}

@media print {
  .icon-ishit-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-ishit-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/ishit-12.png?1413530981');
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 33px;
  }
}

.icon-ishit-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1653px 0;
  height: 24px;
  width: 66px;
}

.icon-klucz-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -999px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 12px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-klucz-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -862px 0;
    height: 12px;
    width: 12px;
  }
}

@media print {
  .icon-klucz-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-klucz-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/klucz-12.png?1408347694');
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 12px;
  }
}

.icon-klucz-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1724px 0;
  height: 24px;
  width: 24px;
}

.icon-live-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -1016px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 12px;
  width: 44px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-live-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -877px 0;
    height: 12px;
    width: 43.5px;
  }
}

@media print {
  .icon-live-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-live-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/live-12.png?1413530981');
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 44px;
  }
}

.icon-live-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1753px 0;
  height: 24px;
  width: 87px;
}

.icon-seven-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -1065px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 12px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-seven-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -923px 0;
    height: 12px;
    width: 12px;
  }
}

@media print {
  .icon-seven-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-seven-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/seven-12.png?1408347694');
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 12px;
  }
}

.icon-seven-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1845px 0;
  height: 24px;
  width: 24px;
}

.icon-signlang-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -1120px -21px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 11px;
  width: 18px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-signlang-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -957px -17px;
    height: 10.5px;
    width: 18px;
  }
}

@media print {
  .icon-signlang-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-signlang-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/signlang-12.png?1413530982');
    display: inline-block;
    height: 11px;
    vertical-align: middle;
    width: 18px;
  }
}

.icon-signlang-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1914px -34px;
  height: 21px;
  width: 36px;
}

.icon-sixteen-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -1110px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 12px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-sixteen-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -962px 0;
    height: 12px;
    width: 12px;
  }
}

@media print {
  .icon-sixteen-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-sixteen-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/sixteen-12.png?1408347694');
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 12px;
  }
}

.icon-sixteen-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1924px 0;
  height: 24px;
  width: 24px;
}

.icon-smile-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -1127px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 12px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-smile-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -977px 0;
    height: 12px;
    width: 12px;
  }
}

@media print {
  .icon-smile-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-smile-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/smile-12.png?1408347694');
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 12px;
  }
}

.icon-smile-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1953px 0;
  height: 24px;
  width: 24px;
}

.icon-sound51-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -1144px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 12px;
  width: 18px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-sound51-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -991px 0;
    height: 12px;
    width: 18.5px;
  }
}

@media print {
  .icon-sound51-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-sound51-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/sound51-12.png?1412853771');
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 18px;
  }
}

.icon-sound51-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -1982px 0;
  height: 24px;
  width: 37px;
}

.icon-twelve-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-s659276914d.png');
  background-position: -1167px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 12px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-twelve-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
    background-size: 1026.5px 256px;
    background-position: -1012px 0;
    height: 12px;
    width: 12px;
  }
}

@media print {
  .icon-twelve-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-twelve-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons/twelve-12.png?1408347694');
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 12px;
  }
}

.icon-twelve-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-x2-s02dacbef8b.png');
  background-position: -2024px 0;
  height: 24px;
  width: 24px;
}

.icon-vod-24-key {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-vod-24-sf7f0006100.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 24px;
  width: 24px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-vod-24-key {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-vod-24-x2-s7d90929b81.png');
    background-size: 79.5px 24px;
    background-position: 0 0;
    height: 24px;
    width: 24px;
  }
}

@media print {
  .icon-vod-24-key {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-vod-24-key:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons-vod-24/vod-24-key.png?1408347694');
    display: inline-block;
    height: 24px;
    vertical-align: middle;
    width: 24px;
  }
}

.icon-vod-24-key.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-vod-24-x2-s7d90929b81.png');
  background-position: 0 0;
  height: 48px;
  width: 48px;
}

.icon-vod-24-sixteen-16 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-vod-24-sf7f0006100.png');
  background-position: -29px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 24px;
  width: 24px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-vod-24-sixteen-16 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-vod-24-x2-s7d90929b81.png');
    background-size: 79.5px 24px;
    background-position: -27px 0;
    height: 24px;
    width: 24px;
  }
}

@media print {
  .icon-vod-24-sixteen-16 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-vod-24-sixteen-16:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons-vod-24/vod-24-sixteen-16.png?1408347694');
    display: inline-block;
    height: 24px;
    vertical-align: middle;
    width: 24px;
  }
}

.icon-vod-24-sixteen-16.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-vod-24-x2-s7d90929b81.png');
  background-position: -53px 0;
  height: 48px;
  width: 48px;
}

.icon-vod-24-twelve-12 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-vod-24-sf7f0006100.png');
  background-position: -58px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 24px;
  width: 24px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 3 / 2),
(min--moz-device-pixel-ratio: 2),
(min-device-pixel-ratio: 2),
(min-resolution: 144dpi) {
  .icon-vod-24-twelve-12 {
    background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-vod-24-x2-s7d90929b81.png');
    background-size: 79.5px 24px;
    background-position: -53px 0;
    height: 24px;
    width: 24px;
  }
}

@media print {
  .icon-vod-24-twelve-12 {
    display: inline-block;
    vertical-align: middle;
  }

  .icon-vod-24-twelve-12:before {
    content: url('//s.tvp.pl/files/tvp.pl/images/icons-vod-24/vod-24-twelve-12.png?1408347694');
    display: inline-block;
    height: 24px;
    vertical-align: middle;
    width: 24px;
  }
}

.icon-vod-24-twelve-12.x2 {
  background-image: url('//s.tvp.pl/files/tvp.pl/auto/icons-vod-24-x2-s7d90929b81.png');
  background-position: -106px 0;
  height: 48px;
  width: 48px;
}

.do-not-miss__slider .do-not-miss__pagination .swiper-pagination-switch,
.shop__slider .shop__slider__pagination-wrapper .shop__pagination .swiper-pagination-switch,
.episodes .episodes__slider__pagination-wrapper .episodes__pagination .swiper-pagination-switch,
.episodes .episodes__slider__pagination-wrapper .episodes-medium__pagination .swiper-pagination-switch,
.episodes .episodes__slider__pagination-wrapper .we-recommend__pagination .swiper-pagination-switch,
.episodes-medium .episodes-medium__slider__pagination-wrapper .episodes__pagination .swiper-pagination-switch,
.episodes-medium .episodes-medium__slider__pagination-wrapper .episodes-medium__pagination .swiper-pagination-switch,
.episodes-medium .episodes-medium__slider__pagination-wrapper .we-recommend__pagination .swiper-pagination-switch,
.we-recommend__slider__pagination-wrapper .episodes__pagination .swiper-pagination-switch,
.we-recommend__slider__pagination-wrapper .episodes-medium__pagination .swiper-pagination-switch,
.we-recommend__slider__pagination-wrapper .we-recommend__pagination .swiper-pagination-switch,
.most-popular-services .pagination-wrapper .most-popular-services__pagination .swiper-pagination-switch,
.fotostory__pagination .swiper-pagination-switch,
.episodes-small__pagination .swiper-pagination-switch {
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -moz-border-radius-topleft: 15px;
  -webkit-border-top-left-radius: 15px;
  border-top-left-radius: 15px;
  -moz-border-radius-topright: 15px;
  -webkit-border-top-right-radius: 15px;
  border-top-right-radius: 15px;
  -moz-border-radius-bottomleft: 15px;
  -webkit-border-bottom-left-radius: 15px;
  border-bottom-left-radius: 15px;
  -moz-border-radius-bottomright: 15px;
  -webkit-border-bottom-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background: #7f7f7f;
  cursor: pointer;
  display: inline-block;
  height: 15px;
  margin: 0px 0px 0px 12px;
  width: 15px;
}

.do-not-miss__slider .do-not-miss__pagination .swiper-visible-switch,
.shop__slider .shop__slider__pagination-wrapper .shop__pagination .swiper-visible-switch,
.episodes .episodes__slider__pagination-wrapper .episodes__pagination .swiper-visible-switch,
.episodes .episodes__slider__pagination-wrapper .episodes-medium__pagination .swiper-visible-switch,
.episodes .episodes__slider__pagination-wrapper .we-recommend__pagination .swiper-visible-switch,
.episodes-medium .episodes-medium__slider__pagination-wrapper .episodes__pagination .swiper-visible-switch,
.episodes-medium .episodes-medium__slider__pagination-wrapper .episodes-medium__pagination .swiper-visible-switch,
.episodes-medium .episodes-medium__slider__pagination-wrapper .we-recommend__pagination .swiper-visible-switch,
.we-recommend__slider__pagination-wrapper .episodes__pagination .swiper-visible-switch,
.we-recommend__slider__pagination-wrapper .episodes-medium__pagination .swiper-visible-switch,
.we-recommend__slider__pagination-wrapper .we-recommend__pagination .swiper-visible-switch,
.most-popular-services .pagination-wrapper .most-popular-services__pagination .swiper-visible-switch,
.fotostory__pagination .swiper-visible-switch,
.episodes-small__pagination .swiper-visible-switch {
  background: #5599ce;
  opacity: 1;
}

.main__slider {
  font-size: 1rem;
  margin-top: 0;
  max-height: 300px;
  background-color: transparent;
  overflow: hidden;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .main__slider {
    padding-bottom: 0;
    max-height: 430px;
  }
}

@media (min-width: 1024px) {
  .main__slider {
    max-height: 300px;
  }
}

.main__slider article img {
  width: 100%;
  display: block;
}

.main__slider a {
  color: #141414;
}

.main__slider a:visited {
  color: #141414;
}

.main__slider a:focus {
  color: #141414;
}

.main__slider a:hover {
  color: #141414;
}

.main__slider a:active {
  color: #141414;
}

@media (min-width: 1024px) {
  .main__slider .main__slide-wrapper {
    padding-bottom: 64px;
    background-color: #515151;
  }
}

@media (min-width: 1024px) {
  .main__slider .main__slide-wrapper {
    padding-bottom: 0px;
  }
}

.main__slider .main__slide {
  position: relative;
}

.main__slider .main__slide a>div>img {
  max-width: 100%;
}

.main__slider .main__slide a>div>header,
.main__slider .main__slide a>div>p,
.main__slider .main__slide a>div>footer {
  padding: 0.2em 5% 0.5em 5%;
}

.main__slider .main__slide a>div>header {
  color: #fff;
  background-color: #b11f30;
  display: inline-block;
  font-size: 0.8em;
}

.main__slider .main__slide a>div>p {
  display: block;
  font-family: 'Roboto';
  font-size: 2em;
  line-height: 1.125em;
  color: #143e7e;
}

.main__slider .main__slide a>div>footer {
  display: none;
}

@media (min-width: 768px) {
  .main__slider .main__slide a>div>footer {
    display: block;
    background-color: #b6b6b6;
    font-size: 0.875em;
    line-height: 1.5em;
    padding: 18px 22px;
  }

  .main__slider .main__slide a>div>footer p {
    overflow: hidden;
    color: #141414;
  }

  .main__slider .main__slide a>div>footer p:hover {
    color: #141414;
  }
}

@media (min-width: 1024px) {
  .main__slider .main__slide a>div {
    background-color: #e9f2fa;
    bottom: 0;
    max-height: 100%;
    left: 100px;
    position: absolute;
    width: 350px;
  }

  .main__slider .main__slide a>div>footer {
    display: block;
    height: 100%;
  }
}

@media (min-width: 1024px) and (min-width: 768px) {
  .main__slider .main__slide a>div>footer {
    background-color: #b6b6b6;
    font-size: 0.875em;
    line-height: 1.5em;
    padding: 18px 22px;
  }

  .main__slider .main__slide a>div>footer p {
    overflow: hidden;
    color: #141414;
  }

  .main__slider .main__slide a>div>footer p:hover {
    color: #141414;
  }
}

.main__slider .main__slide a:hover {
  text-decoration: none;
}

.main__slider .main__pagination {
  position: absolute;
  z-index: 20;
  top: 90%;
  left: 3%;
}

@media (min-width: 768px) {
  .main__slider .main__pagination {
    bottom: 46%;
    left: auto;
    right: 30px;
    top: auto;
  }
}

@media (min-width: 1024px) {
  .main__slider .main__pagination {
    bottom: auto;
    top: 88%;
  }
}

.main__slider .main__pagination .swiper-pagination-switch {
  display: inline-block;
  background: #fff;
  margin: 0px 0px 0px 12px;
  opacity: 0.9;
  cursor: pointer;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -moz-border-radius-topleft: 15px;
  -webkit-border-top-left-radius: 15px;
  border-top-left-radius: 15px;
  -moz-border-radius-topright: 15px;
  -webkit-border-top-right-radius: 15px;
  border-top-right-radius: 15px;
  -moz-border-radius-bottomleft: 15px;
  -webkit-border-bottom-left-radius: 15px;
  border-bottom-left-radius: 15px;
  -moz-border-radius-bottomright: 15px;
  -webkit-border-bottom-right-radius: 15px;
  border-bottom-right-radius: 15px;
  width: 15px;
  height: 15px;
  background-color: #a6a6a6;
}

.main__slider .main__pagination .swiper-active-switch {
  background: #fff;
  opacity: 1;
  background-color: #5599ce;
}

@media (min-width: 768px) {
  .main__slider .main__pagination .swiper-active-switch {
    background-color: white;
  }
}

.main__slider .main__pagination .swiper-visible-switch {
  /* Specific visible button style: */
}

@media (min-width: 768px) {
  .main__slider .fotostory__slider-prev {
    left: 16px;
  }
}

@media (min-width: 768px) and (min-width: 1024px) {
  .main__slider .fotostory__slider-prev {
    left: 0;
  }
}

@media (min-width: 768px) and (min-width: 1198px) {
  .main__slider .fotostory__slider-prev {
    left: 32px;
  }
}

@media (min-width: 768px) {
  .main__slider .fotostory__slider-next {
    right: 16px;
  }
}

@media (min-width: 768px) and (min-width: 1024px) {
  .main__slider .fotostory__slider-next {
    right: 0;
  }
}

@media (min-width: 768px) and (min-width: 1198px) {
  .main__slider .fotostory__slider-next {
    right: 32px;
  }
}

@media (min-width: 768px) {

  .main__slider .fotostory__slider-prev,
  .main__slider .fotostory__slider-next {
    width: 36px;
    height: 48px;
    display: block;
    top: 50%;
    margin-top: -16px;
    position: absolute;
    z-index: 990;
  }
}

@media (min-width: 768px) and (min-width: 768px) {

  .main__slider .fotostory__slider-prev,
  .main__slider .fotostory__slider-next {
    top: 25%;
  }
}

@media (min-width: 768px) and (min-width: 1198px) {

  .main__slider .fotostory__slider-prev,
  .main__slider .fotostory__slider-next {
    top: 50%;
    height: 48px;
    width: 48px;
  }
}

@media (min-width: 768px) {

  .main__slider .fotostory__slider-prev>span .background,
  .main__slider .fotostory__slider-next>span .background {
    opacity: 0.5;
    background-color: #141414;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .main__slider .fotostory__slider-prev>span i,
  .main__slider .fotostory__slider-next>span i {
    line-height: 48px;
  }
}

@media (min-width: 768px) {
  .do-not-miss__slider {
    padding-bottom: 0;
    padding-top: 30px;
  }
}

@media (min-width: 768px) {
  .most-popular-services__slider {
    padding-bottom: 0;
  }
}

.fotostory__pagination,
.episodes-small__pagination {
  position: absolute;
  z-index: 20;
  right: 0;
  bottom: 16px;
}

@media (min-width: 768px) {

  .fotostory__pagination,
  .episodes-small__pagination {
    display: none;
  }
}

.pagination-wrapper {
  clear: both;
  float: left;
  left: 50%;
  margin: 18px 0 0;
  position: relative;
  text-align: left;
}

.pagination-wrapper>div {
  bottom: 0;
  left: -50%;
  position: relative;
  text-align: left;
}

@media (min-width: 768px) {
  .pagination-wrapper {
    position: static;
  }

  .pagination-wrapper .right {
    bottom: auto;
    position: absolute;
    left: auto;
    top: 0;
    right: 4px;
  }
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  -webkit-transition-property: -webkit-transform, left, top;
  -webkit-transition-duration: 0s;
  -webkit-transform: translate3d(0px, 0, 0);
  -webkit-transition-timing-function: ease;
  -moz-transition-property: -moz-transform, left, top;
  -moz-transition-duration: 0s;
  -moz-transform: translate3d(0px, 0, 0);
  -moz-transition-timing-function: ease;
  -o-transition-property: -o-transform, left, top;
  -o-transition-duration: 0s;
  -o-transform: translate3d(0px, 0, 0);
  -o-transition-timing-function: ease;
  -o-transform: translate(0px, 0px);
  -ms-transition-property: -ms-transform, left, top;
  -ms-transition-duration: 0s;
  -ms-transform: translate3d(0px, 0, 0);
  -ms-transition-timing-function: ease;
  transition-property: transform, left, top;
  transition-duration: 0s;
  transform: translate3d(0px, 0, 0);
  transition-timing-function: ease;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  float: left;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
  /* Specify Swiper's Size: */
  /*width:200px;
height: 100px;*/
}

.swiper-wprapper {
  overflow: hidden;
}

.swiper-slide {
  /* Specify Slides's Size: */
  width: 100%;
  height: 100%;
}

.swiper-slide-active {
  /* Specific active slide styling: */
}

.swiper-slide-visible {
  /* Specific visible slide styling: */
}

/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
  /* Stylize pagination button: */
}

.swiper-active-switch {
  /* Specific active button style: */
}

.swiper-visible-switch {
  /* Specific visible button style: */
}

.header-main__logo {
  display: block;
  vertical-align: middle;
  margin: 15px 0 15px 1.54545%;
  width: 161px;
}

@media (min-width: 768px) {
  .header-main__logo {
    left: 0;
    margin: 20px 30px 5px 0;
    position: absolute;
  }
}

@media (min-width: 1024px) {
  .header-main__logo {
    margin: 15px 30px 5px 0;
  }
}

@media (min-width: 1198px) {
  .header-main__logo {
    margin: 20px 30px 30px 0;
  }
}

.header-main__logo>.logo-tvppl-54 {
  text-indent: -161px;
  -moz-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  -webkit-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}

@media (min-width: 768px) {
  .header-main__logo>.logo-tvppl-54 {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.header-main__search {
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 0.5rem rgba(0, 0, 0, 0.15);
  padding: 0 4.54545% 10px 4.54545%;
}

@media (min-width: 768px) {
  .header-main__search {
    border-top: none;
    border-bottom: none;
    padding: 0;
    display: block;
    position: absolute;
    float: none;
    bottom: 68px;
    left: 191px;
  }
}

@media (min-width: 1024px) {
  .header-main__search {
    float: right;
    position: static;
  }
}

.header-main__search>fieldset[role="search"] input[type="text"],
.header-main__search>fieldset[role="search"] input[type="search"] {
  background-color: #FFF;
  max-width: 100%;
  min-width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 2rem;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  -moz-border-radius-topleft: 2rem;
  -webkit-border-top-left-radius: 2rem;
  border-top-left-radius: 2rem;
  -moz-border-radius-topright: 2rem;
  -webkit-border-top-right-radius: 2rem;
  border-top-right-radius: 2rem;
  -moz-border-radius-bottomleft: 2rem;
  -webkit-border-bottom-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  -moz-border-radius-bottomright: 2rem;
  -webkit-border-bottom-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  -moz-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.11);
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.11);
  border: solid 1px transparent;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1;
  padding: 0.2em 0.5em !important;
  margin-top: 0.5em;
  height: 33px !important;
}

@media (min-width: 768px) {

  .header-main__search>fieldset[role="search"] input[type="text"],
  .header-main__search>fieldset[role="search"] input[type="search"] {
    max-width: 173px;
    min-width: none;
    background-color: #f9f9f9;
  }
}

.header-main__search>fieldset[role="search"] input[type="text"]:-moz-placeholder,
.header-main__search>fieldset[role="search"] input[type="search"]:-moz-placeholder {
  line-height: 24px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  position: relative;
}

.header-main__search>fieldset[role="search"] input[type="text"]:-moz-placeholder:after,
.header-main__search>fieldset[role="search"] input[type="search"]:-moz-placeholder:after {
  text-shadow: 0px 0px 1px #aaaaaa;
  content: "\f002";
  font-family: FontAwesome;
  font-size: 22px;
  color: #2b7fc2;
  display: inline-block;
  right: 0;
  position: absolute;
}

.header-main__search>fieldset[role="search"] input[type="text"]::-moz-placeholder,
.header-main__search>fieldset[role="search"] input[type="search"]::-moz-placeholder {
  line-height: 24px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  position: relative;
}

.header-main__search>fieldset[role="search"] input[type="text"]::-moz-placeholder:after,
.header-main__search>fieldset[role="search"] input[type="search"]::-moz-placeholder:after {
  text-shadow: 0px 0px 1px #aaaaaa;
  content: "\f002";
  font-family: FontAwesome;
  font-size: 22px;
  color: #2b7fc2;
  display: inline-block;
  right: 0;
  position: absolute;
}

.header-main__search>fieldset[role="search"] input[type="text"]:-ms-input-placeholder,
.header-main__search>fieldset[role="search"] input[type="search"]:-ms-input-placeholder {
  line-height: 24px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  position: relative;
}

.header-main__search>fieldset[role="search"] input[type="text"]:-ms-input-placeholder:after,
.header-main__search>fieldset[role="search"] input[type="search"]:-ms-input-placeholder:after {
  text-shadow: 0px 0px 1px #aaaaaa;
  content: "\f002";
  font-family: FontAwesome;
  font-size: 22px;
  color: #2b7fc2;
  display: inline-block;
  right: 0;
  position: absolute;
}

.header-main__search>fieldset[role="search"] input[type="text"]::-webkit-input-placeholder,
.header-main__search>fieldset[role="search"] input[type="search"]::-webkit-input-placeholder {
  line-height: 24px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  position: relative;
}

.header-main__search>fieldset[role="search"] input[type="text"]::-webkit-input-placeholder:after,
.header-main__search>fieldset[role="search"] input[type="search"]::-webkit-input-placeholder:after {
  text-shadow: 0px 0px 1px #aaaaaa;
  content: "\f002";
  font-family: FontAwesome;
  font-size: 22px;
  color: #2b7fc2;
  display: inline-block;
  right: 0;
  position: absolute;
}

.header-main__search>fieldset[role="search"] input[type="text"]:focus,
.header-main__search>fieldset[role="search"] input[type="search"]:focus {
  outline: 0;
  background-color: #2b7fc2;
  color: #fff;
}

.header-main__search>fieldset[role="search"] input[type="text"]:focus:-moz-placeholder,
.header-main__search>fieldset[role="search"] input[type="search"]:focus:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.header-main__search>fieldset[role="search"] input[type="text"]:focus:-moz-placeholder:after,
.header-main__search>fieldset[role="search"] input[type="search"]:focus:-moz-placeholder:after {
  color: #fff;
}

.header-main__search>fieldset[role="search"] input[type="text"]:focus::-moz-placeholder,
.header-main__search>fieldset[role="search"] input[type="search"]:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.header-main__search>fieldset[role="search"] input[type="text"]:focus::-moz-placeholder:after,
.header-main__search>fieldset[role="search"] input[type="search"]:focus::-moz-placeholder:after {
  color: #fff;
}

.header-main__search>fieldset[role="search"] input[type="text"]:focus:-ms-input-placeholder,
.header-main__search>fieldset[role="search"] input[type="search"]:focus:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.header-main__search>fieldset[role="search"] input[type="text"]:focus:-ms-input-placeholder:after,
.header-main__search>fieldset[role="search"] input[type="search"]:focus:-ms-input-placeholder:after {
  color: #fff;
}

.header-main__search>fieldset[role="search"] input[type="text"]:focus::-webkit-input-placeholder,
.header-main__search>fieldset[role="search"] input[type="search"]:focus::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.header-main__search>fieldset[role="search"] input[type="text"]:focus::-webkit-input-placeholder:after,
.header-main__search>fieldset[role="search"] input[type="search"]:focus::-webkit-input-placeholder:after {
  color: #fff;
}

.header-main .header-main__nav-circles {
  margin-bottom: 0.5rem;
  position: absolute;
  width: 100%;
  top: 52%;
}

.header-main .header-main__nav-circles:after,
.header-main .header-main__nav-circles:before {
  content: '';
  display: table;
  clear: both;
}

@media (min-width: 768px) {
  .header-main .header-main__nav-circles {
    bottom: auto;
    clear: none;
    float: right;
    margin-bottom: 0;
    padding-top: 12px;
    position: relative;
    width: auto;
    z-index: 4;
  }
}

.header-main .header-main__nav-circles ul>li>a,
.header-main .header-main__nav-circles>a,
.header-main .header-main__nav-circles ul>li>span .your-profile,
.header-main .header-main__nav-circles>span .your-profile {
  padding: 0.5em 1em;
  color: #141414;
}

.header-main .header-main__nav-circles ul>li>a:visited,
.header-main .header-main__nav-circles>a:visited,
.header-main .header-main__nav-circles ul>li>span .your-profile:visited,
.header-main .header-main__nav-circles>span .your-profile:visited {
  color: #141414;
}

.header-main .header-main__nav-circles ul>li>a:focus,
.header-main .header-main__nav-circles>a:focus,
.header-main .header-main__nav-circles ul>li>span .your-profile:focus,
.header-main .header-main__nav-circles>span .your-profile:focus {
  color: #141414;
}

.header-main .header-main__nav-circles ul>li>a:hover,
.header-main .header-main__nav-circles>a:hover,
.header-main .header-main__nav-circles ul>li>span .your-profile:hover,
.header-main .header-main__nav-circles>span .your-profile:hover {
  color: #141414;
}

.header-main .header-main__nav-circles ul>li>a:active,
.header-main .header-main__nav-circles>a:active,
.header-main .header-main__nav-circles ul>li>span .your-profile:active,
.header-main .header-main__nav-circles>span .your-profile:active {
  color: #141414;
}

.header-main .header-main__nav-circles ul>li>ul>li>a {
  color: #141414;
}

.header-main .header-main__nav-circles ul>li>ul>li>a:visited {
  color: #141414;
}

.header-main .header-main__nav-circles ul>li>ul>li>a:focus {
  color: #141414;
}

.header-main .header-main__nav-circles ul>li>ul>li>a:hover {
  color: white;
}

.header-main .header-main__nav-circles ul>li>ul>li>a:active {
  color: #141414;
}

.header-main .header-main__nav-circles ul>li>span .your-profile,
.header-main .header-main__nav-circles>span .your-profile {
  padding: 0;
}

.header-main .header-main__nav-circles>ul {
  clear: both;
}

@media (min-width: 768px) {
  .header-main .header-main__nav-circles>ul {
    display: table-row;
    clear: right;
  }
}

@media (min-width: 1024px) {
  .header-main .header-main__nav-circles>ul {
    margin-right: 20px;
  }
}

.header-main .header-main__nav-circles>ul>li {
  text-align: center;
  float: left;
  width: 25%;
}

@media (min-width: 768px) {
  .header-main .header-main__nav-circles>ul>li {
    width: auto;
    display: table-cell;
    vertical-align: top;
  }
}

.header-main .header-main__nav-circles>ul>li:hover>ul {
  display: block;
}

@media (min-width: 1024px) {
  .header-main .header-main__nav-circles>ul>li {
    text-align: right;
    max-width: none;
  }

  .header-main .header-main__nav-circles>ul>li>ul>li {
    display: block;
  }
}

.header-main .header-main__nav-circles>ul>li>a,
.header-main .header-main__nav-circles>ul>li>span {
  font-size: 0.7em;
  min-height: 3rem;
  padding: 0.5em 0 0 0;
  display: inline-block;
}

@media (min-width: 1024px) {

  .header-main .header-main__nav-circles>ul>li>a,
  .header-main .header-main__nav-circles>ul>li>span {
    font-size: 0.8em;
    text-align: right;
    padding: 0.5em 0 0 0;
    line-height: 1em;
  }
}

@media (min-width: 1198px) {

  .header-main .header-main__nav-circles>ul>li>a,
  .header-main .header-main__nav-circles>ul>li>span {
    padding: 0 0 0 0;
  }
}

.header-main .header-main__nav-circles>ul>li>a>.fa-stack,
.header-main .header-main__nav-circles>ul>li>span>.fa-stack {
  font-size: 28px;
  clear: both;
  display: block;
  margin: 0 auto;
}

@media (min-width: 1024px) {

  .header-main .header-main__nav-circles>ul>li>a>.fa-stack,
  .header-main .header-main__nav-circles>ul>li>span>.fa-stack {
    float: right;
    clear: none;
    margin: 0 0 0 0.2rem;
  }
}

.header-main .header-main__nav-circles>ul>li>a>em,
.header-main .header-main__nav-circles>ul>li>a>.your-profile,
.header-main .header-main__nav-circles>ul>li>span>em,
.header-main .header-main__nav-circles>ul>li>span>.your-profile {
  display: block;
  font-weight: 300;
  line-height: 1.2em;
  max-width: 4.5rem;
  margin: 0 auto 0.5em auto;
  color: #141414;
}

.header-main .header-main__nav-circles>ul>li>a>em>span,
.header-main .header-main__nav-circles>ul>li>a>.your-profile>span,
.header-main .header-main__nav-circles>ul>li>span>em>span,
.header-main .header-main__nav-circles>ul>li>span>.your-profile>span {
  display: block;
  width: 100%;
}

@media (min-width: 1024px) {

  .header-main .header-main__nav-circles>ul>li>a>em,
  .header-main .header-main__nav-circles>ul>li>a>.your-profile,
  .header-main .header-main__nav-circles>ul>li>span>em,
  .header-main .header-main__nav-circles>ul>li>span>.your-profile {
    float: right;
    max-width: 84px;
    margin: 1em auto;
  }

  .header-main .header-main__nav-circles>ul>li>a>em>span,
  .header-main .header-main__nav-circles>ul>li>a>.your-profile>span,
  .header-main .header-main__nav-circles>ul>li>span>em>span,
  .header-main .header-main__nav-circles>ul>li>span>.your-profile>span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.header-main .header-main__nav-circles>ul>li.nav-circles__vod>a>.fa-stack>.fa:first-child {
  color: #b11f30;
}

.header-main .header-main__nav-circles>ul>li.nav-circles__epg>a>.fa-stack>.fa:first-child {
  color: #23255e;
}

.header-main .header-main__nav-circles>ul>li.nav-circles__tvp>a>.fa-stack>.fa:first-child {
  color: #2b7fc2;
}

.header-main .header-main__nav-circles>ul>li.nav-circles__info>a>.fa-stack>.fa:first-child {
  color: #521571;
}

.header-main .header-main__nav-circles>ul>li.nav-circles__log.login>a>.fa-stack>.fa:first-child,
.header-main .header-main__nav-circles>ul>li.nav-circles__log.login>span .fa-stack .fa.fa-circle {
  color: #46971e;
}

.header-main .header-main__nav-circles>ul>li.nav-circles__tvp>a>em {
  max-width: none;
  width: auto;
}

@media (min-width: 768px) {
  .header-main .header-main__nav-circles>ul>li.nav-circles__tvp>a>em {
    max-width: 67px;
  }
}

@media (min-width: 1024px) {
  .header-main .header-main__nav-circles>ul>li.nav-circles__tvp>a>em {
    max-width: 67px;
  }
}

.header-main .header-main__nav-circles>ul>li.nav-circles__log {
  width: 1px;
  overflow: hidden;
  margin-left: -1px;
}

@media (min-width: 768px) {
  .header-main .header-main__nav-circles>ul>li.nav-circles__log {
    width: auto;
    overflow: visible;
  }
}

@media (min-width: 1024px) {
  .header-main .header-main__nav-circles>ul>li.nav-circles__log {
    width: auto;
    min-width: 130px;
  }
}

.header-main .header-main__nav-circles>ul>li>ul a {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .header-main .header-main__nav-circles>ul>li>ul {
    top: 100%;
    left: -50%;
    margin-left: -0.5rem;
  }
}

@media (min-width: 1024px) {
  .header-main .header-main__nav-circles>ul>li>ul {
    left: 0;
    margin-left: 0;
  }
}

.header-main__nav-tech {
  background-color: #333333;
  font-size: 0.8em;
  left: 0;
  right: 0;
  z-index: 5;
}

@media (min-width: 768px) {
  .header-main__nav-tech {
    -moz-border-radius-bottomleft: 3em;
    -webkit-border-bottom-left-radius: 3em;
    border-bottom-left-radius: 3em;
    -moz-border-radius-bottomright: 3em;
    -webkit-border-bottom-right-radius: 3em;
    border-bottom-right-radius: 3em;
    margin-left: 191px;
    margin-right: 0;
    font-size: 0.6em;
    background-color: #d8e9f8;
    padding: 0.5em 2em 0 2em;
    position: static;
    float: left;
  }
}

.header-main__nav-tech a {
  padding: 0.5em 4.54545%;
  color: #8d8d8d;
}

.header-main__nav-tech a:visited {
  color: #8d8d8d;
}

.header-main__nav-tech a:focus {
  color: #8d8d8d;
}

.header-main__nav-tech a:hover {
  color: #e6e6e6;
}

.header-main__nav-tech a:active {
  color: #8d8d8d;
}

.header-main__nav-tech a:hover {
  background-color: #000;
}

@media (min-width: 768px) {
  .header-main__nav-tech a {
    color: #1e6bb3;
  }

  .header-main__nav-tech a:visited {
    color: #1e6bb3;
  }

  .header-main__nav-tech a:focus {
    color: #1e6bb3;
  }

  .header-main__nav-tech a:hover {
    color: #175187;
  }

  .header-main__nav-tech a:active {
    color: #1e6bb3;
  }

  .header-main__nav-tech a:hover {
    background-color: transparent;
  }
}

.header-main__nav-tech a.nav-tech__log {
  color: #fff;
  float: right;
}

@media (min-width: 768px) {
  .header-main__nav-tech a.nav-tech__log {
    display: none;
  }
}

.header-main__nav-tech a.nav-tech__log.login {
  color: white;
  background-color: #46971e;
}

.header-main__nav-tech a.nav-tech__log.login:visited {
  color: white;
}

.header-main__nav-tech a.nav-tech__log.login:focus {
  color: white;
}

.header-main__nav-tech a.nav-tech__log.login:hover {
  color: white;
}

.header-main__nav-tech a.nav-tech__log.login:active {
  color: white;
}

.header-main__nav-tech a.nav-tech__log.login:focus,
.header-main__nav-tech a.nav-tech__log.login:active,
.header-main__nav-tech a.nav-tech__log.login:hover {
  background-color: #326c16;
}

.header-main__nav-tech a.nav-tech__log.logout {
  color: #fff;
}

.header-main__nav-tech .nav-tech__availability-submenu,
.header-main__nav-tech .nav-tech__log-submenu {
  display: table;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden;
}

@media (min-width: 768px) {

  .header-main__nav-tech .nav-tech__availability-submenu,
  .header-main__nav-tech .nav-tech__log-submenu {
    background-color: rgba(0, 0, 0, 0.15);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: auto;
    left: auto;
    right: auto;
    z-index: 5;
    padding: 0.5rem;
    margin-left: -2em;
    margin-top: 18px;
    overflow: inherit;
  }

  .header-main__nav-tech .nav-tech__availability-submenu:before,
  .header-main__nav-tech .nav-tech__log-submenu:before {
    content: "";
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    top: 0;
    border: solid 1rem transparent;
    border-top: none;
    border-bottom-color: rgba(0, 0, 0, 0.15);
    left: 20%;
    margin-left: -1rem;
    margin-top: -16px;
  }
}

.header-main__nav-tech .nav-tech__availability-submenu a,
.header-main__nav-tech .nav-tech__log-submenu a {
  color: #fff;
  display: table-cell;
  font-size: 1.5em;
  border-right: solid 1px rgba(255, 255, 255, 0.2);
}

.header-main__nav-tech .nav-tech__availability-submenu a:last-child,
.header-main__nav-tech .nav-tech__log-submenu a:last-child {
  border-right: none;
}

@media (min-width: 768px) {

  .header-main__nav-tech .nav-tech__availability-submenu a,
  .header-main__nav-tech .nav-tech__log-submenu a {
    background-color: #fff;
    color: #000;
    display: block;
    padding: 0.5em 0.5em;
    border-right: none;
  }
}

@media (min-width: 768px) {

  .header-main__nav-tech .nav-tech__availability-submenu a:hover,
  .header-main__nav-tech .nav-tech__log-submenu a:hover {
    background-color: #1e6bb3;
    color: #fff;
  }
}

.header-main__nav-tech .nav-tech__availability-submenu .nav-tech__log-submenu,
.header-main__nav-tech .nav-tech__log-submenu .nav-tech__log-submenu {
  height: 1px;
}

span.main-colapse-btn {
  color: #141414;
  bottom: 3px;
  cursor: pointer;
  display: block;
  font-size: 2.75em;
  line-height: .25em;
  margin-top: 0;
  position: absolute;
  right: 5%;
}

span.main-colapse-btn:visited {
  color: #141414;
}

span.main-colapse-btn:focus {
  color: #141414;
}

span.main-colapse-btn:hover {
  color: #1e6bb3;
}

span.main-colapse-btn:active {
  color: #141414;
}

@media (min-width: 768px) {
  span.main-colapse-btn {
    display: none;
  }
}

span.main-colapse-btn i {
  -webkit-text-size-adjust: 75%;
  -webkit-appearance: none;
}

.header-main__logo-container {
  position: relative;
}

.header-main__nav-main {
  position: relative;
  z-index: 3;
  display: block;
  font-weight: 300;
  color: #000;
  font-size: 20px;
  background-color: #f9f9f9;
  display: block;
  float: none;
  clear: both;
}

.header-main__nav-main.colapse {
  height: 1px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .header-main__nav-main.colapse {
    height: auto;
    overflow: visible;
  }
}

@media (min-width: 1198px) {
  .header-main__nav-main.colapse {
    float: right;
    left: auto;
    margin-right: 0;
    margin-left: 0;
    position: relative;
    top: auto;
    width: calc(100% - 191px);
  }
}

.header-main__nav-main.in span.caret-top {
  border: solid 1rem transparent;
  border-bottom-color: rgba(0, 0, 0, 0.15);
  border-top: none;
  bottom: 100%;
  display: block;
  height: 0;
  margin-top: -1.5rem;
  margin-right: 5px;
  position: absolute;
  right: 4.5%;
  width: 0;
}

@media (min-width: 768px) {
  .header-main__nav-main.in span.caret-top {
    display: none;
  }
}

@media (min-width: 768px) {
  .header-main__nav-main {
    background-color: transparent;
    width: 100%;
    clear: none;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1198px) {
  .header-main__nav-main {
    position: absolute;
    left: 191px;
    top: 50px;
    width: auto;
    right: 0;
    margin-left: 1.6129%;
    margin-right: 1.6129%;
  }
}

.header-main__nav-main a {
  color: #141414;
}

.header-main__nav-main a:visited {
  color: #141414;
}

.header-main__nav-main a:focus {
  color: #141414;
}

.header-main__nav-main a:hover {
  color: #1e6bb3;
}

.header-main__nav-main a:active {
  color: #141414;
}

.header-main__nav-main>a {
  padding: 0.5em 1em;
}

.header-main__nav-main>ul {
  border-top: solid 0.5rem rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .header-main__nav-main>ul {
    border-top: none;
    height: auto;
    overflow: visible;
    clear: both;
    padding-bottom: 10px;
    display: table;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .header-main__nav-main>ul {
    display: block;
    width: auto;
    float: left;
  }
}

@media (min-width: 1198px) {
  .header-main__nav-main>ul {
    clear: none;
    float: left;
  }
}

.header-main__nav-main>ul>li {
  clear: both;
  display: block;
  border-top: solid 1px #e6e6e6;
}

.header-main__nav-main>ul>li>span {
  display: block;
}

.header-main__nav-main>ul>li.nav-main__item--with-submenu.active>a:after,
.header-main__nav-main>ul>li.nav-main__item--with-submenu.active>span:after {
  content: "\f0d8";
  padding: 10px 2px 12px 1px;
}

.header-main__nav-main>ul>li.nav-main__item--with-submenu>a:after,
.header-main__nav-main>ul>li.nav-main__item--with-submenu>span:after {
  content: "\f0d7";
  font-family: FontAwesome;
  color: #000;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  border-radius: 1em;
  -moz-border-radius-topleft: 1em;
  -webkit-border-top-left-radius: 1em;
  border-top-left-radius: 1em;
  -moz-border-radius-topright: 1em;
  -webkit-border-top-right-radius: 1em;
  border-top-right-radius: 1em;
  -moz-border-radius-bottomleft: 1em;
  -webkit-border-bottom-left-radius: 1em;
  border-bottom-left-radius: 1em;
  -moz-border-radius-bottomright: 1em;
  -webkit-border-bottom-right-radius: 1em;
  border-bottom-right-radius: 1em;
  font-size: 1em;
  display: block;
  padding: 12px 2px 10px 1px;
  line-height: 1px;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.25);
  float: right;
  height: 1px;
  width: 20px;
  text-align: center;
}

@media (min-width: 768px) {

  .header-main__nav-main>ul>li.nav-main__item--with-submenu>a:after,
  .header-main__nav-main>ul>li.nav-main__item--with-submenu>span:after {
    display: none;
  }
}

.header-main__nav-main>ul>li.nav-main__item--with-submenu>a:hover,
.header-main__nav-main>ul>li.nav-main__item--with-submenu>span:hover {
  cursor: pointer;
}

.header-main__nav-main>ul>li.active>a,
.header-main__nav-main>ul>li.active>span {
  font-weight: 300;
}

@media (min-width: 768px) {

  .header-main__nav-main>ul>li.active>a,
  .header-main__nav-main>ul>li.active>span {
    font-weight: inherit;
  }
}

@media (min-width: 768px) {
  .header-main__nav-main>ul>li.active.hover>ul {
    display: inherit !important;
  }
}

.header-main__nav-main>ul>li.active>ul {
  display: block;
}

@media (min-width: 768px) {
  .header-main__nav-main>ul>li.active>ul {
    display: none;
  }
}

@media (min-width: 768px) {
  .header-main__nav-main>ul>li {
    clear: none;
    border-top: none;
    display: inline-block;
    padding: 0 11px;
    text-align: center;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .header-main__nav-main>ul>li {
    display: inline-block;
    padding: 0;
  }

  .header-main__nav-main>ul>li:first-child,
  .header-main__nav-main>ul>li:last-child,
  .header-main__nav-main>ul>li:nth-child(5) {
    text-align: inherit;
    width: auto;
  }
}

.header-main__nav-main>ul>li>a,
.header-main__nav-main>ul>li>span {
  display: block;
  padding: 0.5em 4.54545%;
}

.header-main__nav-main>ul>li>a.hover,
.header-main__nav-main>ul>li>span.hover {
  background-color: #1e6bb3;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 768px) {

  .header-main__nav-main>ul>li>a.hover,
  .header-main__nav-main>ul>li>span.hover {
    background-color: transparent;
    color: #1e6bb3;
  }
}

@media (min-width: 768px) {

  .header-main__nav-main>ul>li>a,
  .header-main__nav-main>ul>li>span {
    padding: 0.5em 0;
  }
}

@media (min-width: 1024px) {

  .header-main__nav-main>ul>li>a,
  .header-main__nav-main>ul>li>span {
    padding: 0.5em 0.5em;
  }
}

@media (min-width: 1198px) {

  .header-main__nav-main>ul>li>a,
  .header-main__nav-main>ul>li>span {
    padding: 0.5em 0.7em;
  }
}

@media (min-width: 1398px) {

  .header-main__nav-main>ul>li>a,
  .header-main__nav-main>ul>li>span {
    padding: 0.5em 0.8em;
  }
}

@media (min-width: 768px) {
  .header-main__nav-main>ul>li>ul {
    top: 100%;
    width: 300px;
    left: -50%;
    margin-top: 0;
    margin-left: -0.5rem;
  }
}

@media (min-width: 480px) {
  .header-main__nav-main>ul>li>ul>li {
    width: 50%;
    padding: 0;
    float: left;
  }
}

@media (min-width: 568px) {
  .header-main__nav-main>ul>li>ul>li {
    padding: 0;
    float: left;
    width: 33.333333%;
  }
}

@media (min-width: 768px) {
  .header-main__nav-main>ul>li>ul>li {
    width: 50%;
    padding: 0;
    float: left;
  }

  .header-main__nav-main>ul>li>ul>li:last-child {
    width: 100%;
  }

  .header-main__nav-main>ul>li.regional>ul>li:last-child {
    width: 50%;
  }
}

.header-main__nav-main>ul>li>ul>li a,
.header-main__nav-main>ul>li>ul>li span {
  border-top: solid 1px #fff;
  padding: 0.5em 4.54545%;
}

.header-main__nav-main>ul>li>ul>li a.hover,
.header-main__nav-main>ul>li>ul>li span.hover {
  background-color: #1e6bb3;
  color: #fff;
}

@media (min-width: 480px) {

  .header-main__nav-main>ul>li>ul>li a,
  .header-main__nav-main>ul>li>ul>li span {
    padding: 0.5em 9.0909%;
  }
}

@media (min-width: 568px) {

  .header-main__nav-main>ul>li>ul>li a,
  .header-main__nav-main>ul>li>ul>li span {
    padding: 0.5em 13.63635%;
  }
}

@media (min-width: 768px) {

  .header-main__nav-main>ul>li>ul>li a,
  .header-main__nav-main>ul>li>ul>li span {
    padding: 0.5em 0.5em;
    text-align: left;
  }
}

@media (min-width: 568px) {
  .header-main__nav-main>ul>li>ul.regional>li {
    padding: 0;
    float: left;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .header-main__nav-main>ul>li>ul.regional>li:last-child {
    width: 50%;
  }
}

.header-main__nav-main>ul>li>ul.regional.active>ul {
  display: block;
}

.header-main__nav-main>ul>li.regional>a {
  display: none;
}

@media (min-width: 768px) {
  .header-main__nav-main>ul>li.regional>span {
    display: block;
  }

  .header-main__nav-main>ul>li.regional>a {
    display: none;
  }

  /*.header-main__nav-main > ul > li.regional ul li:last-child {
        display: none; } */
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait),
(min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .header-main__nav-main>ul>li.regional>span {
    display: block;
  }

  .header-main__nav-main>ul>li.regional>a {
    display: none;
  }

  .header-main__nav-main>ul>li.regional ul li:last-child {
    display: block;
  }
}

.header-main {
  font-size: 1rem;
  margin-top: 0;
  position: relative;
  padding-bottom: 109px;
}

@media (min-width: 768px) {
  .header-main {
    padding-bottom: 0;
    position: static;
  }
}

.header-main__nav-main a:hover,
.header-main__nav-tech a:hover,
.header-main__nav-circles a:hover,
.header__submenu-nav a:hover {
  text-decoration: none;
}

@media (min-width: 768px) {

  .header-main__nav-main>ul>li>ul,
  .header-main__nav-tech>ul>li>ul,
  .header-main__nav-circles>ul>li>ul,
  .header__submenu-nav>ul>li>ul {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
  }

  .header-main__nav-main>ul>li>ul:before,
  .header-main__nav-tech>ul>li>ul:before,
  .header-main__nav-circles>ul>li>ul:before,
  .header__submenu-nav>ul>li>ul:before {
    content: "";
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    bottom: 100%;
    border: solid 1rem transparent;
    border-bottom-color: rgba(0, 0, 0, 0.15);
    border-top: none;
    left: 50%;
    margin-left: -1rem;
  }

  .header-main__nav-main>ul>li>ul>li>a,
  .header-main__nav-tech>ul>li>ul>li>a,
  .header-main__nav-circles>ul>li>ul>li>a,
  .header__submenu-nav>ul>li>ul>li>a {
    background-color: #fff;
  }
}

@media (min-width: 768px) {

  .header-main__nav-circles>ul>li>ul,
  .header-main__nav-main>ul>li>ul,
  .header__submenu-nav>ul>li>ul {
    font-size: 1rem;
  }

  .header-main__nav-circles>ul>li>ul>li>a,
  .header-main__nav-main>ul>li>ul>li>a,
  .header__submenu-nav>ul>li>ul>li>a {
    display: block;
  }

  .header-main__nav-circles>ul>li>ul>li>a:hover,
  .header-main__nav-main>ul>li>ul>li>a:hover,
  .header__submenu-nav>ul>li>ul>li>a:hover {
    background-color: #1e6bb3;
    color: #fff;
  }

  .header-main__nav-circles>ul>li>ul>li.select a,
  .header-main__nav-main>ul>li>ul>li.select a,
  .header__submenu-nav>ul>li>ul>li.select a {
    background-color: #1e6bb3;
    color: #fff;
  }
}

.do-not-miss {
  background-color: #e6e6e6;
  padding: 25px 0 18px 0;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .do-not-miss {
    background-color: transparent;
    padding-bottom: 0;
    margin-top: 0;
  }
}

.do-not-miss .do-not-miss__header {
  font-size: 1.875em;
  font-weight: 300;
  padding-bottom: 12px;
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__header {
    margin-bottom: -24px;
    padding-bottom: 8px;
    color: #141414;
  }
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide {
    padding: 0 2px;
  }
}

.do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article {
  background-color: #dddddd;
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article {
    background-color: transparent;
    box-shadow: none;
  }
}

.do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure {
  position: relative;
  overflow: hidden;
  *zoom: 1;
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure {
    padding-bottom: 5em;
  }
}

.do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure img {
  width: 50%;
  display: block;
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure img {
    width: 100%;
  }
}

@media (min-width: 320px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption {
    position: absolute;
    display: block;
    width: 100%;
    top: 100%;
    margin-top: -5em;
  }
}

.do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption header {
  font-size: 1em;
  color: #141414;
}

@media (min-width: 1024px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption header {
    display: table-row;
  }
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption aside {
    position: relative;
    display: table-cell;
    vertical-align: top;
  }
}

@media (min-width: 320px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption aside i {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption aside i {
    position: static;
    float: left;
  }
}

.do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption aside time {
  font-size: 0.875em;
  font-weight: 300;
  padding: 0;
  display: none;
  clear: both;
}

.do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption aside time.mob-time {
  display: block;
  text-align: right;
  padding: 5px 10px 0 5px;
}

@media (min-width: 320px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption aside time {
    position: relative;
    padding: 5px 0 0 8px;
    text-align: left;
  }

  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption aside time.mob-time {
    font-size: 0.875em;
    -webkit-text-size-adjust: none;
  }
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption aside time {
    position: relative;
    top: 0;
    padding: 0;
    line-height: 1.250em;
    white-space: nowrap;
    display: block;
    text-align: right;
  }

  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption aside time.mob-time {
    display: none;
  }
}

.do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption p {
  font-size: 18px;
  font-weight: 300;
  padding: 0px 10px;
  height: 2.75em;
  left: 50%;
  overflow: hidden;
  position: absolute;
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption p {
    display: table-cell;
    padding: 12px 10px 10px 10px;
    left: 0;
    position: relative;
    font-size: 1em;
    line-height: 1.375em;
    height: auto;
  }
}

.do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption section {
  display: none;
  padding: 14px 1em 1em 1em;
  color: #141414;
  font-size: 0.8em;
  line-height: 1.5em;
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure figcaption section {
    display: block;
    padding: 0px 1.5em;
    overflow: hidden;
    height: 1px;
  }
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure:after {
    content: '';
    display: block;
    position: absolute;
    height: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), #ffffff);
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), #ffffff);
    background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  }
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure.hover:after {
    height: 60px;
    border-bottom: solid 1px #e6e6e6;
  }
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure.hover figcaption {
    top: 0;
    margin-top: 0;
    background-color: #fff;
    bottom: 0;
    border: solid 1px #e6e6e6;
  }

  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide article figure.hover figcaption section {
    height: auto;
    padding: 1em 1.5em;
  }
}

@media (min-width: 768px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide {
    width: 33.333333%;
    clear: right;
    float: left;
    padding-left: 1px;
    padding-right: 1px;
  }
}

@media (min-width: 1024px) {
  .do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide {
    width: 25%;
    clear: right;
    float: left;
    padding-left: 1px;
    padding-right: 1px;
  }
}

.do-not-miss .do-not-miss__slider>ul>.do-not-miss__slide>article>p {
  display: none;
}

@media (min-width: 1024px) {
  .banner-section {
    clear: both;
    overflow: hidden;
  }
}

.banner-section img {
  width: 100%;
  margin: 10px auto 0;
}

@media (max-width: 768px) {
  .banner-section img {
    width: calc(100% + (18% * 2));
    left: -18%;
    position: relative;
  }
}

.banner-section a {
  overflow: hidden;
  display: block;
  width: 100%;
  line-height: 0;
  height: 100%;
}

.banner-section a:hover {
  text-decoration: none;
}

.banner-section a span {
  font-size: 24px;
  white-space: nowrap;
}

.banner-section a span:first-child {
  margin: 0 20px 0 100px;
}

.banner-section a span:last-child {
  margin: 0 20px 0 100px;
  float: right;
}

.news-section>section .information-section__entries>li article figure .image-wrapper .icon-duration,
.news-section>section .culture-section__entries>li article figure .image-wrapper .icon-duration,
.news-section>section .sport-section__entries>li article figure .image-wrapper .icon-duration,
.news-section>section .information-section__entries>li:first-child article figure div .icon-duration,
.news-section>section .culture-section__entries>li:first-child article figure div .icon-duration,
.news-section>section .sport-section__entries>li:first-child article figure div .icon-duration {
  background: rgba(0, 0, 0, 0.6);
  bottom: 2px;
  color: #d3d3de;
  font-size: 11px;
  left: 1px;
  padding: 0 7px;
  position: absolute;
  line-height: 1.6;
}

.news-section>section .information-section__entries>li article figure .image-wrapper .icon-duration.position,
.news-section>section .culture-section__entries>li article figure .image-wrapper .icon-duration.position,
.news-section>section .sport-section__entries>li article figure .image-wrapper .icon-duration.position,
.news-section>section .information-section__entries>li:first-child article figure div .icon-duration.position,
.news-section>section .culture-section__entries>li:first-child article figure div .icon-duration.position,
.news-section>section .sport-section__entries>li:first-child article figure div .icon-duration.position {
  bottom: 57px;
}

.news-section>section .information-section__entries>li article figure .image-wrapper .icon-duration.positon-episodes,
.news-section>section .culture-section__entries>li article figure .image-wrapper .icon-duration.positon-episodes,
.news-section>section .sport-section__entries>li article figure .image-wrapper .icon-duration.positon-episodes,
.news-section>section .information-section__entries>li:first-child article figure div .icon-duration.positon-episodes,
.news-section>section .culture-section__entries>li:first-child article figure div .icon-duration.positon-episodes,
.news-section>section .sport-section__entries>li:first-child article figure div .icon-duration.positon-episodes {
  bottom: 5px;
  font-size: 13px;
  z-index: 999;
}

@media (min-width: 768px) {

  .news-section>section .information-section__entries>li article figure .image-wrapper .icon-duration.positon-episodes,
  .news-section>section .culture-section__entries>li article figure .image-wrapper .icon-duration.positon-episodes,
  .news-section>section .sport-section__entries>li article figure .image-wrapper .icon-duration.positon-episodes,
  .news-section>section .information-section__entries>li:first-child article figure div .icon-duration.positon-episodes,
  .news-section>section .culture-section__entries>li:first-child article figure div .icon-duration.positon-episodes,
  .news-section>section .sport-section__entries>li:first-child article figure div .icon-duration.positon-episodes {
    bottom: 5px;
  }
}

.information-section header,
.news-section header,
.culture-section header,
.sport-section header {
  font-size: 1em;
  font-weight: 300;
  margin-bottom: 8px;
}

.information-section>header,
.news-section>header,
.culture-section>header,
.sport-section>header {
  font-size: 1.875em;
  color: #141414;
}

.news-section {
  margin-top: 0;
  padding-top: 36px;
}

@media (min-width: 768px) {
  .news-section {
    margin-top: 4px;
    border-top: solid 1px #d9d9d9;
  }
}

.news-section>section {
  margin-bottom: 30px;
  position: relative;
}

@media (min-width: 1024px) {
  .news-section>section {
    width: 33.333333%;
    clear: right;
    float: left;
    padding-left: 0.05;
    padding-right: 0.05;
  }

  .news-section>section:nth-child(1) {
    width: 33.333333%;
    clear: right;
    float: left;
    padding-left: 0.05;
    padding-right: 0.05;
    clear: both;
  }

  .news-section>section:nth-child(3) {
    width: 33.333333%;
    clear: right;
    float: right;
    padding-left: 0.05;
    padding-right: 0.05;
  }
}

.news-section>section .information-section__menu,
.news-section>section .sport-section__menu {
  margin-top: 10px;
  display: none;
}

@media (min-width: 768px) {

  .news-section>section .information-section__menu,
  .news-section>section .sport-section__menu {
    position: absolute;
    top: -16px;
    margin-top: 0;
    display: block;
  }
}

.news-section>section .information-section__menu>li,
.news-section>section .sport-section__menu>li {
  display: block;
  font-size: 1.250em;
  font-weight: 300;
  line-height: 1.9em;
  border-bottom: solid 1px #e9e9e9;
}

.news-section>section .information-section__menu>li:first-child,
.news-section>section .sport-section__menu>li:first-child {
  border-top: solid 1px #e9e9e9;
}

@media (min-width: 768px) {

  .news-section>section .information-section__menu>li,
  .news-section>section .sport-section__menu>li {
    float: left;
    font-size: 0.75em;
    line-height: 1em;
    border-bottom: none;
    margin-right: 16px;
  }

  .news-section>section .information-section__menu>li:first-child,
  .news-section>section .sport-section__menu>li:first-child {
    border-top: none;
  }

  .news-section>section .information-section__menu>li>a,
  .news-section>section .sport-section__menu>li>a {
    color: #141414;
  }

  .news-section>section .information-section__menu>li>a:visited,
  .news-section>section .sport-section__menu>li>a:visited {
    color: #141414;
  }

  .news-section>section .information-section__menu>li>a:focus,
  .news-section>section .sport-section__menu>li>a:focus {
    color: #141414;
  }

  .news-section>section .information-section__menu>li>a:hover,
  .news-section>section .sport-section__menu>li>a:hover {
    color: #141414;
  }

  .news-section>section .information-section__menu>li>a:active,
  .news-section>section .sport-section__menu>li>a:active {
    color: #141414;
  }
}

@media (min-width: 768px) {

  .news-section>section .information-section__menu>li>ul,
  .news-section>section .sport-section__menu>li>ul {
    background-color: #fff;
    border: solid 1px #e6e6e6;
    padding: 1em;
    font-size: 1.2em;
    width: 250px;
    z-index: 1000;
    margin-left: -50%;
  }

  .news-section>section .information-section__menu>li>ul>li,
  .news-section>section .sport-section__menu>li>ul>li {
    float: left;
    width: 50%;
  }

  .news-section>section .information-section__menu>li>ul>li a,
  .news-section>section .sport-section__menu>li>ul>li a {
    color: #141414;
    display: block;
    padding: 0.5em;
  }

  .news-section>section .information-section__menu>li>ul>li a:visited,
  .news-section>section .sport-section__menu>li>ul>li a:visited {
    color: #141414;
  }

  .news-section>section .information-section__menu>li>ul>li a:focus,
  .news-section>section .sport-section__menu>li>ul>li a:focus {
    color: #141414;
  }

  .news-section>section .information-section__menu>li>ul>li a:hover,
  .news-section>section .sport-section__menu>li>ul>li a:hover {
    color: #141414;
  }

  .news-section>section .information-section__menu>li>ul>li a:active,
  .news-section>section .sport-section__menu>li>ul>li a:active {
    color: #141414;
  }
}

.news-section>section .menu_visible {
  display: block;
}

.news-section>section .menu-button {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 0.875em;
  font-weight: 300;
  display: block;
  color: #141414;
}

.news-section>section .menu-button:after {
  content: "";
  font-family: FontAwesome;
  font-size: 2em;
  margin-left: 0.5em;
  vertical-align: middle;
  display: inline-block;
}

@media (min-width: 768px) {
  .news-section>section .menu-button {
    display: none;
  }
}

@media (min-width: 1024px) {
  .news-section>section .information-section__entries {
    position: absolute;
    left: 0;
    top: 32px;
  }
}

.news-section>section .information-section__entries,
.news-section>section .culture-section__entries,
.news-section>section .sport-section__entries {
  overflow: hidden;
}

@media (min-width: 768px) {

  .news-section>section .information-section__entries,
  .news-section>section .culture-section__entries,
  .news-section>section .sport-section__entries {
    background-color: #f2f2f2;
  }
}

@media (min-width: 1024px) {

  .news-section>section .information-section__entries,
  .news-section>section .culture-section__entries,
  .news-section>section .sport-section__entries {
    background-color: transparent;
  }
}

.news-section>section .information-section__entries>li,
.news-section>section .culture-section__entries>li,
.news-section>section .sport-section__entries>li {
  border-top: solid 1px #e9e9e9;
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

.news-section>section .information-section__entries>li article,
.news-section>section .culture-section__entries>li article,
.news-section>section .sport-section__entries>li article {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

.news-section>section .information-section__entries>li article figure .image-wrapper,
.news-section>section .culture-section__entries>li article figure .image-wrapper,
.news-section>section .sport-section__entries>li article figure .image-wrapper {
  position: relative;
  max-height: 100%;
  width: 43.478261%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: none;
}

.news-section>section .information-section__entries>li article figure figcaption,
.news-section>section .culture-section__entries>li article figure figcaption,
.news-section>section .sport-section__entries>li article figure figcaption {
  width: 56.521739%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  padding: 10px 14px 0 14px;
  color: #141414;
  line-height: 1.250em;
  font-weight: 300;
  font-size: 0.875em;
}

@media (min-width: 768px) {

  .news-section>section .information-section__entries>li article figure figcaption,
  .news-section>section .culture-section__entries>li article figure figcaption,
  .news-section>section .sport-section__entries>li article figure figcaption {
    padding: 14px;
  }
}

.news-section>section .information-section__entries>li article figure figcaption header,
.news-section>section .culture-section__entries>li article figure figcaption header,
.news-section>section .sport-section__entries>li article figure figcaption header {
  overflow: hidden;
  max-height: 68px;
}

@media (min-width: 768px) {

  .news-section>section .information-section__entries>li article figure figcaption header,
  .news-section>section .culture-section__entries>li article figure figcaption header,
  .news-section>section .sport-section__entries>li article figure figcaption header {
    max-height: 88px;
  }
}

@media (min-width: 1024px) {

  .news-section>section .information-section__entries>li article figure figcaption header,
  .news-section>section .culture-section__entries>li article figure figcaption header,
  .news-section>section .sport-section__entries>li article figure figcaption header {
    max-height: 4em;
  }
}

.news-section>section .information-section__entries>li article figure figcaption section,
.news-section>section .culture-section__entries>li article figure figcaption section,
.news-section>section .sport-section__entries>li article figure figcaption section {
  height: 1px;
  overflow: hidden;
}

.news-section>section .information-section__entries>li:first-child,
.news-section>section .culture-section__entries>li:first-child,
.news-section>section .sport-section__entries>li:first-child {
  border-top: none;
  background-color: #e5e5e5;
  display: block;
  width: 100%;
}

.news-section>section .information-section__entries>li:first-child article figure div,
.news-section>section .culture-section__entries>li:first-child article figure div,
.news-section>section .sport-section__entries>li:first-child article figure div {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

.news-section>section .information-section__entries>li:first-child article figure figcaption,
.news-section>section .culture-section__entries>li:first-child article figure figcaption,
.news-section>section .sport-section__entries>li:first-child article figure figcaption {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  font-size: 1em;
  line-height: 1.375em;
  font-weight: 300;
  padding: 1em;
  clear: both;
  width: 100%;
  color: #141414;
}

.news-section>section .information-section__entries>li:first-child p,
.news-section>section .culture-section__entries>li:first-child p,
.news-section>section .sport-section__entries>li:first-child p {
  display: none;
}

@media (min-width: 768px) {

  .news-section>section .information-section__entries,
  .news-section>section .culture-section__entries,
  .news-section>section .sport-section__entries {
    height: auto;
  }

  .news-section>section .information-section__entries>li,
  .news-section>section .culture-section__entries>li,
  .news-section>section .sport-section__entries>li {
    border-left: solid 1px #d9d9d9;
    height: 230px;
    position: relative;
    width: 14.285714%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
}

@media (min-width: 768px) and (min-width: 850px) {

  .news-section>section .information-section__entries>li,
  .news-section>section .culture-section__entries>li,
  .news-section>section .sport-section__entries>li {
    height: 260px;
  }
}

@media (min-width: 768px) and (min-width: 960px) {

  .news-section>section .information-section__entries>li,
  .news-section>section .culture-section__entries>li,
  .news-section>section .sport-section__entries>li {
    height: 290px;
  }
}

@media (min-width: 768px) {

  .news-section>section .information-section__entries>li article,
  .news-section>section .culture-section__entries>li article,
  .news-section>section .sport-section__entries>li article {
    background-color: #f2f2f2;
    overflow: hidden;
    height: 100%;
  }

  .news-section>section .information-section__entries>li article figure,
  .news-section>section .culture-section__entries>li article figure,
  .news-section>section .sport-section__entries>li article figure {
    height: 100%;
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0;
  }

  .news-section>section .information-section__entries>li article figure>.image-wrapper,
  .news-section>section .culture-section__entries>li article figure>.image-wrapper,
  .news-section>section .sport-section__entries>li article figure>.image-wrapper {
    position: relative;
    max-height: 100%;
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0;
  }

  .news-section>section .information-section__entries>li article figure figcaption,
  .news-section>section .culture-section__entries>li article figure figcaption,
  .news-section>section .sport-section__entries>li article figure figcaption {
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0;
    font-size: 0.875em;
    line-height: 1.250em;
    font-weight: 300;
    padding: 1em;
  }

  .news-section>section .information-section__entries>li article figure figcaption section,
  .news-section>section .culture-section__entries>li article figure figcaption section,
  .news-section>section .sport-section__entries>li article figure figcaption section {
    height: 1px;
    overflow: hidden;
  }

  .news-section>section .information-section__entries>li article figure.hover figcaption,
  .news-section>section .information-section__entries>li article figure figcaption.ng-animate,
  .news-section>section .culture-section__entries>li article figure.hover figcaption,
  .news-section>section .culture-section__entries>li article figure figcaption.ng-animate,
  .news-section>section .sport-section__entries>li article figure.hover figcaption,
  .news-section>section .sport-section__entries>li article figure figcaption.ng-animate {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #f2f2f2;
  }

  .news-section>section .information-section__entries>li article figure.hover figcaption header,
  .news-section>section .information-section__entries>li article figure figcaption.ng-animate header,
  .news-section>section .culture-section__entries>li article figure.hover figcaption header,
  .news-section>section .culture-section__entries>li article figure figcaption.ng-animate header,
  .news-section>section .sport-section__entries>li article figure.hover figcaption header,
  .news-section>section .sport-section__entries>li article figure figcaption.ng-animate header {
    color: #141414;
  }

  .news-section>section .information-section__entries>li article figure.hover figcaption section,
  .news-section>section .information-section__entries>li article figure figcaption.ng-animate section,
  .news-section>section .culture-section__entries>li article figure.hover figcaption section,
  .news-section>section .culture-section__entries>li article figure figcaption.ng-animate section,
  .news-section>section .sport-section__entries>li article figure.hover figcaption section,
  .news-section>section .sport-section__entries>li article figure figcaption.ng-animate section {
    color: #141414;
    height: initial;
  }

  .news-section>section .information-section__entries>li article figure.hover figcaption:after,
  .news-section>section .information-section__entries>li article figure figcaption.ng-animate:after,
  .news-section>section .culture-section__entries>li article figure.hover figcaption:after,
  .news-section>section .culture-section__entries>li article figure figcaption.ng-animate:after,
  .news-section>section .sport-section__entries>li article figure.hover figcaption:after,
  .news-section>section .sport-section__entries>li article figure figcaption.ng-animate:after {
    content: '';
    position: absolute;
    height: 60px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: block;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMmYyZjIiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #f2f2f2));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), #f2f2f2);
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), #f2f2f2);
    background-image: linear-gradient(rgba(255, 255, 255, 0), #f2f2f2);
  }

  .news-section>section .information-section__entries>li:first-child,
  .news-section>section .culture-section__entries>li:first-child,
  .news-section>section .sport-section__entries>li:first-child {
    width: 57.142857%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
    border-left: none;
    background-color: #e1e1e1;
  }

  .news-section>section .information-section__entries>li:first-child article,
  .news-section>section .culture-section__entries>li:first-child article,
  .news-section>section .sport-section__entries>li:first-child article {
    background-color: #e1e1e1;
  }

  .news-section>section .information-section__entries>li:first-child article figure,
  .news-section>section .culture-section__entries>li:first-child article figure,
  .news-section>section .sport-section__entries>li:first-child article figure {
    position: relative;
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .news-section>section .information-section__entries>li:first-child article figure>.image-wrapper,
  .news-section>section .culture-section__entries>li:first-child article figure>.image-wrapper,
  .news-section>section .sport-section__entries>li:first-child article figure>.image-wrapper {
    height: auto;
    overflow: hidden;
    position: relative;
    max-height: 100%;
  }

  .news-section>section .information-section__entries>li:first-child article figure>.image-wrapper div img,
  .news-section>section .culture-section__entries>li:first-child article figure>.image-wrapper div img,
  .news-section>section .sport-section__entries>li:first-child article figure>.image-wrapper div img {
    min-height: 100%;
    max-width: none;
    width: initial !important;
  }

  .news-section>section .information-section__entries>li:first-child article figure:before,
  .news-section>section .culture-section__entries>li:first-child article figure:before,
  .news-section>section .sport-section__entries>li:first-child article figure:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI4MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC44Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuOSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(55%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0.9)));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
  }

  .news-section>section .information-section__entries>li:first-child article figure figcaption,
  .news-section>section .culture-section__entries>li:first-child article figure figcaption,
  .news-section>section .sport-section__entries>li:first-child article figure figcaption {
    bottom: 0;
    color: #fff;
    position: absolute;
    z-index: 1000;
  }

  .news-section>section .information-section__entries>li:first-child article figure.hover figcaption,
  .news-section>section .information-section__entries>li:first-child article figure figcaption.ng-animate,
  .news-section>section .culture-section__entries>li:first-child article figure.hover figcaption,
  .news-section>section .culture-section__entries>li:first-child article figure figcaption.ng-animate,
  .news-section>section .sport-section__entries>li:first-child article figure.hover figcaption,
  .news-section>section .sport-section__entries>li:first-child article figure figcaption.ng-animate {
    background-color: #e1e1e1;
    left: 0;
    width: 100%;
  }

  .news-section>section .information-section__entries>li:first-child article figure.hover figcaption:after,
  .news-section>section .information-section__entries>li:first-child article figure figcaption.ng-animate:after,
  .news-section>section .culture-section__entries>li:first-child article figure.hover figcaption:after,
  .news-section>section .culture-section__entries>li:first-child article figure figcaption.ng-animate:after,
  .news-section>section .sport-section__entries>li:first-child article figure.hover figcaption:after,
  .news-section>section .sport-section__entries>li:first-child article figure figcaption.ng-animate:after {
    content: '';
    position: absolute;
    height: 60px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: block;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMWUxZTEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #e1e1e1));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), #e1e1e1);
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), #e1e1e1);
    background-image: linear-gradient(rgba(255, 255, 255, 0), #e1e1e1);
  }
}

@media (min-width: 1024px) {

  .news-section>section .information-section__entries,
  .news-section>section .culture-section__entries,
  .news-section>section .sport-section__entries {
    height: auto;
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0;
  }

  .touch .news-section>section .information-section__entries,
  .touch .news-section>section .culture-section__entries,
  .touch .news-section>section .sport-section__entries {
    width: 99%;
    display: table;
  }

  .news-section>section .information-section__entries>li,
  .news-section>section .culture-section__entries>li,
  .news-section>section .sport-section__entries>li {
    height: auto;
    border-left: none;
    display: block;
    position: relative;
    width: 33.333333%;
    clear: right;
    float: left;
    padding-left: 1px;
    padding-right: 1px;
  }

  .touch .news-section>section .information-section__entries>li,
  .touch .news-section>section .culture-section__entries>li,
  .touch .news-section>section .sport-section__entries>li {
    display: table-cell;
  }

  .news-section>section .information-section__entries>li article,
  .news-section>section .culture-section__entries>li article,
  .news-section>section .sport-section__entries>li article {
    position: relative;
    background-color: transparent;
    min-height: 180px;
  }

  .news-section>section .information-section__entries>li article figure,
  .news-section>section .culture-section__entries>li article figure,
  .news-section>section .sport-section__entries>li article figure {
    position: static;
  }

  .news-section>section .information-section__entries>li article figure .image-wrapper,
  .news-section>section .culture-section__entries>li article figure .image-wrapper,
  .news-section>section .sport-section__entries>li article figure .image-wrapper {
    position: relative;
    max-height: 100%;
  }

  .news-section>section .information-section__entries>li article figure .image-wrapper div img,
  .news-section>section .culture-section__entries>li article figure .image-wrapper div img,
  .news-section>section .sport-section__entries>li article figure .image-wrapper div img {
    width: 100%;
    margin-right: 1px;
  }

  .news-section>section .information-section__entries>li article figure figcaption,
  .news-section>section .culture-section__entries>li article figure figcaption,
  .news-section>section .sport-section__entries>li article figure figcaption {
    font-size: 0.875em;
    line-height: 1.375em;
    font-weight: 300;
    clear: both;
    width: 100%;
    background-color: transparent;
    border-left: none;
    padding-left: 0;
    padding-right: 0;
    padding-right: 1em;
  }

  .news-section>section .information-section__entries>li article figure.hover figcaption,
  .news-section>section .information-section__entries>li article figure figcaption.ng-animate,
  .news-section>section .culture-section__entries>li article figure.hover figcaption,
  .news-section>section .culture-section__entries>li article figure figcaption.ng-animate,
  .news-section>section .sport-section__entries>li article figure.hover figcaption,
  .news-section>section .sport-section__entries>li article figure figcaption.ng-animate {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #fff;
    padding-left: 1em;
    border: solid 1px #e6e6e6;
    overflow: hidden;
  }

  .news-section>section .information-section__entries>li article figure.hover figcaption section,
  .news-section>section .information-section__entries>li article figure figcaption.ng-animate section,
  .news-section>section .culture-section__entries>li article figure.hover figcaption section,
  .news-section>section .culture-section__entries>li article figure figcaption.ng-animate section,
  .news-section>section .sport-section__entries>li article figure.hover figcaption section,
  .news-section>section .sport-section__entries>li article figure figcaption.ng-animate section {
    color: #141414;
    height: auto;
    font-size: 13px;
    line-height: 1.2em;
  }

  .news-section>section .information-section__entries>li article figure.hover figcaption:after,
  .news-section>section .information-section__entries>li article figure figcaption.ng-animate:after,
  .news-section>section .culture-section__entries>li article figure.hover figcaption:after,
  .news-section>section .culture-section__entries>li article figure figcaption.ng-animate:after,
  .news-section>section .sport-section__entries>li article figure.hover figcaption:after,
  .news-section>section .sport-section__entries>li article figure figcaption.ng-animate:after {
    content: '';
    position: absolute;
    height: 60px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    display: block;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), #ffffff);
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), #ffffff);
    background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  }

  .news-section>section .information-section__entries>li:first-child,
  .news-section>section .culture-section__entries>li:first-child,
  .news-section>section .sport-section__entries>li:first-child {
    width: 100%;
    clear: right;
    float: right;
    padding-left: 1px;
    padding-right: 1px;
    margin-right: 0;
    padding: 0;
  }

  .news-section>section .information-section__entries>li:first-child article,
  .news-section>section .culture-section__entries>li:first-child article,
  .news-section>section .sport-section__entries>li:first-child article {
    min-height: 0;
    width: 100%;
    clear: right;
    float: right;
    padding-left: 1px;
    padding-right: 1px;
    margin-right: 0;
  }

  .news-section>section .information-section__entries>li:first-child article figure,
  .news-section>section .culture-section__entries>li:first-child article figure,
  .news-section>section .sport-section__entries>li:first-child article figure {
    position: relative;
    width: 100%;
    clear: right;
    float: right;
    padding-left: 1px;
    padding-right: 1px;
    margin-right: 0;
    max-height: 216px;
  }

  .news-section>section .information-section__entries>li:first-child article figure:before,
  .news-section>section .culture-section__entries>li:first-child article figure:before,
  .news-section>section .sport-section__entries>li:first-child article figure:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI4MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC44Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuOSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(55%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0.9)));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
  }

  .news-section>section .information-section__entries>li:first-child article figure .image-wrapper,
  .news-section>section .culture-section__entries>li:first-child article figure .image-wrapper,
  .news-section>section .sport-section__entries>li:first-child article figure .image-wrapper {
    height: initial;
    position: relative;
    max-height: 100%;
    width: 100%;
    clear: right;
    float: right;
    padding-left: 1px;
    padding-right: 1px;
    margin-right: 0;
  }

  .news-section>section .information-section__entries>li:first-child article figure .image-wrapper div img,
  .news-section>section .culture-section__entries>li:first-child article figure .image-wrapper div img,
  .news-section>section .sport-section__entries>li:first-child article figure .image-wrapper div img {
    min-height: 100%;
    width: 100%;
  }

  .news-section>section .information-section__entries>li:first-child article figure.hover figcaption,
  .news-section>section .information-section__entries>li:first-child article figure figcaption.ng-animate,
  .news-section>section .culture-section__entries>li:first-child article figure.hover figcaption,
  .news-section>section .culture-section__entries>li:first-child article figure figcaption.ng-animate,
  .news-section>section .sport-section__entries>li:first-child article figure.hover figcaption,
  .news-section>section .sport-section__entries>li:first-child article figure figcaption.ng-animate {
    top: 0;
    background-color: #fff;
    border: solid 1px #e6e6e6;
    color: #141414;
  }

  .news-section>section .information-section__entries>li:first-child article figure.hover figcaption header,
  .news-section>section .information-section__entries>li:first-child article figure figcaption.ng-animate header,
  .news-section>section .culture-section__entries>li:first-child article figure.hover figcaption header,
  .news-section>section .culture-section__entries>li:first-child article figure figcaption.ng-animate header,
  .news-section>section .sport-section__entries>li:first-child article figure.hover figcaption header,
  .news-section>section .sport-section__entries>li:first-child article figure figcaption.ng-animate header {
    color: #141414;
  }

  .news-section>section .information-section__entries>li:first-child article figure.hover figcaption section,
  .news-section>section .information-section__entries>li:first-child article figure figcaption.ng-animate section,
  .news-section>section .culture-section__entries>li:first-child article figure.hover figcaption section,
  .news-section>section .culture-section__entries>li:first-child article figure figcaption.ng-animate section,
  .news-section>section .sport-section__entries>li:first-child article figure.hover figcaption section,
  .news-section>section .sport-section__entries>li:first-child article figure figcaption.ng-animate section {
    height: auto;
    float: left;
    color: #141414;
    line-height: 1.5;
  }

  .news-section>section .information-section__entries>li:first-child article figure.hover figcaption:after,
  .news-section>section .information-section__entries>li:first-child article figure figcaption.ng-animate:after,
  .news-section>section .culture-section__entries>li:first-child article figure.hover figcaption:after,
  .news-section>section .culture-section__entries>li:first-child article figure figcaption.ng-animate:after,
  .news-section>section .sport-section__entries>li:first-child article figure.hover figcaption:after,
  .news-section>section .sport-section__entries>li:first-child article figure figcaption.ng-animate:after {
    content: '';
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), #ffffff);
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), #ffffff);
    background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
    position: absolute;
    height: 60px;
    bottom: 0;
    left: 0px;
    right: 0px;
    display: block;
  }

  .news-section>section .information-section__entries>li:first-child article figure figcaption,
  .news-section>section .culture-section__entries>li:first-child article figure figcaption,
  .news-section>section .sport-section__entries>li:first-child article figure figcaption {
    background: transparent;
    position: absolute;
    width: 100%;
    bottom: 0px;
    font-weight: 300;
    color: white;
    padding: 1.5em;
    overflow: hidden;
    z-index: 999;
  }

  .news-section>section .information-section__entries>li:first-child article figure figcaption header,
  .news-section>section .culture-section__entries>li:first-child article figure figcaption header,
  .news-section>section .sport-section__entries>li:first-child article figure figcaption header {
    font-size: 1em;
  }

  .news-section>section .information-section__entries>li:first-child article figure figcaption section,
  .news-section>section .culture-section__entries>li:first-child article figure figcaption section,
  .news-section>section .sport-section__entries>li:first-child article figure figcaption section {
    height: 1px;
    overflow: hidden;
    font-weight: 300;
  }

  .news-section>section .information-section__entries>li:nth-child(4),
  .news-section>section .culture-section__entries>li:nth-child(4),
  .news-section>section .sport-section__entries>li:nth-child(4) {
    width: 33.333333%;
    clear: right;
    float: right;
    padding-left: 1px;
    padding-right: 1px;
    margin-right: 0;
  }
}

.most-popular-services {
  overflow: hidden;
  *zoom: 1;
  overflow: visible;
  margin-bottom: 38px;
  padding-bottom: 8px;
  border-bottom: solid 1px #d9d9d9;
}

@media (min-width: 768px) {
  .most-popular-services {
    border-bottom: none;
    margin-bottom: 50px;
    padding-bottom: 0;
  }
}

.most-popular-services:after {
  overflow: hidden;
  *zoom: 1;
}

.most-popular-services header {
  line-height: 1.125em;
  margin-bottom: 12px;
  color: #141414;
}

@media (min-width: 768px) {
  .most-popular-services header {
    line-height: 1em;
  }
}

.most-popular-services .pagination-wrapper {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .most-popular-services .pagination-wrapper {
    display: none;
  }
}

.most-popular-services>.swiper-container {
  -moz-box-shadow: 0px 0px 8px 0px #dddddd;
  -webkit-box-shadow: 0px 0px 8px 0px #dddddd;
  box-shadow: 0px 0px 8px 0px #dddddd;
}

.most-popular-services .most-popular-services__slider ul {
  margin-bottom: 0px;
  overflow: hidden;
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
  float: left;
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide {
  display: block;
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
  float: left;
}

@media (min-width: 768px) {
  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide {
    width: 20%;
    clear: right;
    float: left;
    padding-left: 1px;
    padding-right: 1px;
    box-shadow: 2px 0 2px #ededed;
  }

  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide:nth-child(1) {
    width: 20%;
    clear: right;
    float: left;
    padding-left: 1px;
    padding-right: 1px;
    clear: both;
  }

  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide:nth-child(5) {
    width: 20%;
    clear: right;
    float: right;
    padding-left: 1px;
    padding-right: 1px;
  }
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a {
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure {
  position: relative;
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption>p {
  float: left;
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption>p {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 1.125em;
  text-align: center;
  background-color: #00458a;
  font-weight: 300;
  color: white;
}

@media (min-width: 768px) {
  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption>p {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 0.7em;
  }
}

@media (min-width: 1024px) {
  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption>p {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 1.125em;
  }
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-up,
.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-down,
.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-neutral {
  text-align: center;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  display: table-cell;
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-up>i,
.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-down>i,
.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-neutral>i {
  color: white;
}

@media (min-width: 768px) {

  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-up,
  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-down,
  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-neutral {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1024px) {

  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-up,
  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-down,
  .most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-neutral {
    width: 32px;
    height: 32px;
  }
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-up {
  background-color: #24980a;
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-down {
  background-color: red;
}

.most-popular-services .most-popular-services__slider ul>.most-popular-services__slide a figure figcaption .icon-wrapper-neutral {
  background-color: #8d8d8d;
}

.fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper .icon-duration,
.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure .wrapper .icon-duration {
  background: rgba(0, 0, 0, 0.6);
  bottom: 2px;
  color: #d3d3de;
  font-size: 11px;
  left: 1px;
  padding: 0 7px;
  position: absolute;
  line-height: 1.6;
}

.fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper .icon-duration.position,
.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure .wrapper .icon-duration.position {
  bottom: 57px;
}

.fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper .icon-duration.positon-episodes,
.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure .wrapper .icon-duration.positon-episodes {
  bottom: 5px;
  font-size: 11px;
}

@media (min-width: 768px) {

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper .icon-duration.positon-episodes,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure .wrapper .icon-duration.positon-episodes {
    bottom: 5px;
    font-size: 13px;
  }
}

@media (min-width: 1024px) {

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper .icon-duration.positon-episodes,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure .wrapper .icon-duration.positon-episodes {
    z-index: 998;
  }
}

@media (min-width: 768px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure {
    padding-bottom: 92px;
  }
}

@media (min-width: 1024px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure {
    padding-bottom: 52px;
  }
}

@media (min-width: 1198px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure {
    padding-bottom: 0px;
  }
}

@media (min-width: 1198px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure:before,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure:before {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI4MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC44Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuOSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(55%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0.9)));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
  }
}

.fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption,
.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption {
  font-size: 0.875em;
  color: #141414;
  font-weight: 300;
  padding: 15px 6px 15px 0;
  line-height: 1.375em;
  width: inherit;
}

@media (min-width: 768px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption {
    background-color: #515151;
    color: white;
    display: block;
    min-height: 92px;
    width: 100%;
    padding: 16px 20px;
    position: absolute;
    bottom: 0;
  }
}

@media (min-width: 1024px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption {
    min-height: 52px;
  }
}

@media (min-width: 1198px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption {
    font-size: 1em;
    position: absolute;
    width: 100%;
    min-height: 86px;
    bottom: 0px;
    color: white;
    padding: 10px 22px 20px 22px;
    z-index: 998;
    background-color: transparent;
    display: block;
    bottom: 0;
    position: absolute;
  }
}

.fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption header,
.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption header {
  line-height: 1.125em;
  font-size: 1em;
  font-weight: 300;
  padding: 0 20px 12px 20px;
  z-index: 998;
}

@media (min-width: 768px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption header,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption header {
    line-height: 1.375em;
    margin-bottom: 0;
    font-size: 1.250em;
    font-weight: 300;
    padding: 0;
  }
}

@media (min-width: 1024px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption header,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption header {
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
}

@media (min-width: 1198px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption header,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption header {
    font-size: 1.625em;
    line-height: 1.375em;
    height: auto;
    white-space: normal;
  }
}

.fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption section,
.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption section {
  display: none;
}

@media (min-width: 768px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption section,
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption section {
    display: block;
    max-height: 1px;
    overflow: hidden;
  }
}

.fotostory-and-entertainment-section .fotostory-section {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: solid 1px #d9d9d9;
}

.fotostory-and-entertainment-section .fotostory-section>header {
  color: #141414;
}

.fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure {
  position: relative;
}

.fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption {
  width: 100%;
  left: 0;
}

.fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption header {
  -webkit-text-size-adjust: 100%;
  font-size: 1.3em;
  font-weight: 300;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption header {
    line-height: 1.375em;
    margin-bottom: 0;
    font-size: 1.875em;
    font-weight: 300;
    padding: 0;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption header {
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
}

@media (min-width: 1198px) {
  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure figcaption header {
    font-size: 1.625em;
    line-height: 1.375em;
    height: auto;
    white-space: normal;
  }
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .fotostory-section {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #515151;
  }
}

@media (min-width: 1198px) {
  .fotostory-and-entertainment-section .fotostory-section {
    background-color: transparent;
  }
}

.fotostory-and-entertainment-section .fotostory-section .fotostory__slider-prev,
.fotostory-and-entertainment-section .fotostory-section .fotostory__slider-next {
  display: none;
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .fotostory-section {
    display: block;
    z-index: 999;
  }

  .fotostory-and-entertainment-section .fotostory-section>div {
    position: absolute;
  }

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider-prev {
    left: 4px;
  }

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider-next {
    right: 4px;
  }

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider-prev,
  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider-next {
    display: block;
    top: 33%;
    margin-top: -16px;
    position: absolute;
    z-index: 990;
  }
}

@media (min-width: 768px) and (min-width: 768px) {

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider-prev,
  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider-next {
    top: 39%;
  }
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .fotostory-section .fotostory-section__header {
    background-color: white;
    margin-bottom: 0;
    padding-bottom: 12px;
  }
}

.fotostory-and-entertainment-section .entertainment-section {
  position: relative;
}

.fotostory-and-entertainment-section .entertainment-section>header {
  color: #141414;
}

.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry {
  position: relative;
  background-color: #f2f2f2;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry {
    background-color: #515151;
    top: 36px;
    bottom: 0;
    position: absolute;
  }
}

@media (min-width: 1198px) {
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry {
    background-color: transparent;
  }
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure.hover figcaption {
    background-color: #fff;
    color: #141414;
    height: auto;
    top: 0;
    bottom: 0;
    border: solid 1px #e6e6e6;
  }
}

.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure.hover figcaption header {
  white-space: normal;
  margin-bottom: 0.5em;
  font-size: 16px;
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure.hover figcaption section {
    max-height: 300px;
    color: #141414;
    display: block;
    position: relative;
    z-index: 990;
    height: auto;
    font-weight: 300;
    line-height: 1.250em;
    font-size: 0.825em;
  }
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry p {
    display: none;
  }
}

.fotostory-and-entertainment-section .entertainment-section ul>li {
  border-top: solid 1px #e6e6e6;
  background-color: #f2f2f2;
}

@media (min-width: 1024px) {
  .fotostory-and-entertainment-section .entertainment-section ul>li {
    background-color: white;
  }
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .entertainment-section ul>li:first-child {
    border-top: none;
  }
}

@media (min-width: 1024px) {
  .fotostory-and-entertainment-section .entertainment-section ul>li:nth-child(3) {
    border-bottom: solid 1px #e9e9e9;
  }
}

@media (min-width: 1024px) {
  .fotostory-and-entertainment-section .entertainment-section ul>li:first-child {
    border-top: solid 1px #e9e9e9;
  }
}

.fotostory-and-entertainment-section .entertainment-section ul>li article figure {
  position: relative;
  overflow: hidden;
}

.fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper {
  position: relative;
}

@media (min-width: 1024px) {
  .fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper div img {
    padding-right: 1px;
  }
}

.fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption {
  font-size: 0.825em;
  color: #141414;
  font-weight: 300;
  padding: 12px 20px;
  line-height: 1.375em;
  clear: none !important;
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto !important;
    z-index: 1;
    background-color: #fff;
    border: solid 1px #e6e6e6;
  }
}

@media (min-width: 1024px) {
  .fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption {
    position: relative;
    color: #141414;
    font-size: 0.875em;
    padding: 4px;
    display: block;
    margin-right: 0;
    border: none;
  }
}

@media (min-width: 1198px) {
  .fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption {
    position: relative;
    color: #141414;
    font-size: 0.875em;
    padding: 8px 12px 10px;
    text-align: right;
    display: block;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption header {
    font-size: 26px;
    line-height: 1.375em;
    font-weight: 300;
    padding: 12px 16px;
  }
}

.fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption section {
  display: none;
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption section {
    color: #141414;
    display: block;
    font-size: 13px;
    height: 100%;
    line-height: 1.2em;
    text-align: left;
    width: 100%;
  }
}

@media (min-width: 768px) {

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure.hover figcaption,
  .fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption.ng-animate {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-right: solid 1px #e6e6e6;
    padding: 16px;
  }
}

.fotostory-and-entertainment-section .entertainment-section ul>li article p {
  display: none;
}

.fotostory-and-entertainment-section {
  position: relative;
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section {
    margin-bottom: 20px;
  }
}

.fotostory-and-entertainment-section .fotostory-section {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .fotostory-section {
    width: 46.620047%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider__pagination {
    width: 46.620047%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 1.398601%;
  }
}

.fotostory-and-entertainment-section .fotostory-section .fotostory__slider {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

.fotostory-and-entertainment-section .entertainment-section {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .entertainment-section {
    width: 51.981352%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}

.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry {
  width: 100.0%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article {
  width: 100.0%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure {
  width: 100.0%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure .wrapper {
  position: relative;
  width: 42.918455%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: left;
}

.fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption {
  width: 55.793991%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

.fotostory-and-entertainment-section .entertainment-section ul {
  width: 100.0%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: left;
}

.fotostory-and-entertainment-section .entertainment-section ul>li {
  width: 100.0%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: left;
}

.fotostory-and-entertainment-section .entertainment-section ul>li article {
  width: 100.0%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: left;
}

.fotostory-and-entertainment-section .entertainment-section ul>li article figure {
  width: 100.0%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: left;
}

.fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper {
  position: relative;
  width: 42.918455%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: left;
}

.fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption {
  width: 55.793991%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: right;
}

@media (min-width: 768px) {
  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry {
    width: 66.445183%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure .wrapper {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure figcaption {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section ul {
    width: 33.222591%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: right;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: right;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: right;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: right;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: right;
  }
}

@media (min-width: 1024px) {
  .fotostory-and-entertainment-section .fotostory-section {
    width: 41.928721%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section {
    width: 56.813417%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry {
    width: 55.309735%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section ul {
    width: 44.247788%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: right;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: right;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper {
    width: 50%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption {
    width: 50%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
}

@media (min-width: 1198px) {
  .fotostory-and-entertainment-section .fotostory-section {
    width: 43.859649%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .fotostory-section .fotostory__slider ul li figure {
    position: relative;
  }

  .fotostory-and-entertainment-section .entertainment-section {
    width: 54.824561%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry {
    width: 60.079051%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article {
    width: 100.0%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section .entertainment-section__first-entry article figure {
    width: 100.0%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section ul {
    width: 39.525692%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: right;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li {
    width: 100.0%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: right;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article {
    width: 100.0%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure .wrapper {
    width: 50%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .fotostory-and-entertainment-section .entertainment-section ul>li article figure figcaption {
    width: 50%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
}

.now-playing {
  margin: 16px 0 24px 0;
}

@media (min-width: 768px) {
  .now-playing {
    border-top: solid 1px #d9d9d9;
    padding-top: 32px;
  }
}

.now-playing>header {
  display: none;
  color: #141414;
}

@media (min-width: 768px) {
  .now-playing>header {
    display: block;
    margin-bottom: 22px;
  }
}

.now-playing .now-playing__more-button {
  margin-top: 16px;
  padding: 20px;
  background-color: #143e7e;
  color: white;
  line-height: 1em;
  height: 68px;
  font-size: 1.250em;
  font-weight: 300;
  color: white;
}

.now-playing .now-playing__more-button>a {
  color: white;
}

.now-playing .now-playing__more-button>i {
  margin-right: 20px;
}

@media (min-width: 768px) {
  .now-playing .now-playing__more-button {
    display: none;
  }
}

.now-playing ul {
  display: none;
}

@media (min-width: 768px) {
  .now-playing ul {
    display: block;
  }
}

.now-playing ul>li {
  position: relative;
  width: 16.666667%;
  clear: right;
  float: left;
  margin-left: 0;
  margin-right: 0%;
  height: 264px;
  border-bottom: solid 1px #e5e5e5;
  background-color: white;
}

.now-playing ul>li:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  width: 1px;
  background-color: #d9d9d9;
}

.now-playing ul>li article {
  padding-top: 5px;
  background-color: #e5e5e5;
  font-size: 1em;
}

.now-playing ul>li article header .channel-logo {
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
  height: 62px;
  line-height: 55px;
  background-color: #f2f2f2;
  text-align: center;
}

.now-playing ul>li article header .channel-logo>i {
  display: inline-block;
  overflow: hidden;
  text-indent: -666px;
  vertical-align: middle;
}

.now-playing ul>li article header .broadcasting-status {
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
  background-color: #db3b64;
  height: 20px;
  line-height: 20px;
  font-size: 0.583em;
  color: white;
  padding-left: 10px;
  position: relative;
  z-index: 990;
  border-right: solid 1px #c5355a;
}

.now-playing ul>li article header .info {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  min-height: 32px;
  line-height: 32px;
  margin-bottom: 10px;
  background-color: #e1e1e1;
  padding-bottom: 4px;
}

.now-playing ul>li article header .info div {
  width: 33.333333%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: none;
  font-size: 0.5em;
  font-weight: 300;
  color: #141414;
  padding-left: 10px;
}

.now-playing ul>li article header .info .icons-wrapper {
  width: 66.666667%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  margin-top: 12px;
}

.now-playing ul>li article header .info .icons-wrapper>i {
  float: left;
  margin: 0 4px 8px 0;
}

.now-playing ul>li article header p {
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
  font-size: 14px;
  font-weight: 300;
  padding-left: 10px;
  padding-right: 10px;
  color: #141414;
  margin-bottom: 0;
  max-height: 86px;
  overflow: hidden;
  line-height: 1.250em;
}

.now-playing ul>li article header .now-playing__type {
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
  color: #8d8d8d;
  font-size: 0.5em;
  padding-left: 10px;
  margin-bottom: 0;
  padding-top: 2px;
}

.now-playing ul>li:first-child:after,
.now-playing ul>li:nth-child(7):after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: 1px;
  background-color: #d9d9d9;
}

.now-playing ul>li:first-child article header .broadcasting-status,
.now-playing ul>li:nth-child(7) article header .broadcasting-status {
  border-left: solid 1px #c5355a;
}

@media (min-width: 1198px) {

  .now-playing ul>li:first-child:before,
  .now-playing ul>li:nth-child(7):before {
    content: "";
  }

  .now-playing ul>li:first-child:after,
  .now-playing ul>li:nth-child(7):after {
    content: none;
  }

  .now-playing ul>li:first-child article header .broadcasting-status,
  .now-playing ul>li:nth-child(7) article header .broadcasting-status {
    border-left: none;
  }

  .now-playing ul>li:nth-child(6):before,
  .now-playing ul>li:nth-child(12):before {
    content: none;
  }

  .now-playing ul>li:nth-child(6) article header .broadcasting-status,
  .now-playing ul>li:nth-child(12) article header .broadcasting-status {
    border-right: none;
  }
}

.regional-broadcast {
  display: none;
}

.regional-broadcast .regional-broadcast__channel-select {
  width: 16.666667%;
  clear: right;
  float: left;
  margin-left: 0;
  margin-right: 0%;
}

.regional-broadcast .regional-broadcast__articles {
  width: 83.333333%;
  clear: right;
  float: left;
  margin-left: 0;
  margin-right: 0%;
}

.regional-broadcast .regional-broadcast__articles article {
  width: 50%;
  clear: right;
  float: left;
  margin-left: 0;
  margin-right: 0%;
}

@media (min-width: 768px) {
  .regional-broadcast {
    display: block;
  }
}

.regional-broadcast {
  margin-bottom: 40px;
  border-bottom: solid 1px #d9d9d9;
}

.regional-broadcast>header {
  margin-bottom: 10px;
  color: #141414;
}

.regional-broadcast>.regional-broadcast__channel-select {
  display: block;
  position: relative;
  background-color: #e5e5e5;
  border-left: solid 1px #d9d9d9;
  height: 115px;
}

.regional-broadcast>.regional-broadcast__channel-select>.channel-selected {
  display: block;
  padding: 36px 0 35px;
}

.regional-broadcast>.regional-broadcast__channel-select>.channel-selected:hover {
  cursor: pointer;
}

.regional-broadcast>.regional-broadcast__channel-select>.channel-selected i {
  position: relative;
  overflow: visible;
  margin: 0 auto;
}

.regional-broadcast>.regional-broadcast__channel-select>.channel-selected i[class^="lnar-"]:before {
  content: "";
  color: #141414;
  font-family: FontAwesome;
  font-size: 1.5em;
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  top: 12px;
  right: -20px;
}

.regional-broadcast>.regional-broadcast__channel-select>.broadcast-select {
  position: absolute;
  z-index: 990;
  left: 0;
  top: 100px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  width: 256px;
}

.regional-broadcast>.regional-broadcast__channel-select>.broadcast-select:before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  bottom: 100%;
  border: solid 1rem transparent;
  border-bottom-color: rgba(0, 0, 0, 0.15);
  left: 60px;
}

@media (min-width: 1024px) {
  .regional-broadcast>.regional-broadcast__channel-select>.broadcast-select:before {
    left: 80px;
  }
}

.regional-broadcast>.regional-broadcast__channel-select>.broadcast-select>li {
  float: left;
  width: 120px;
}

.regional-broadcast>.regional-broadcast__channel-select>.broadcast-select>li>a {
  display: block;
  background: white;
  padding: 5px 0 5px 10px;
}

.regional-broadcast>.regional-broadcast__channel-select>.broadcast-select>li>a:hover {
  background-color: #1e6bb3;
  color: #fff;
  text-decoration: none;
}

.regional-broadcast article {
  border-top: solid 6px #e5e5e5;
  border-right: solid 1px #d9d9d9;
  height: 115px;
}

.regional-broadcast article header {
  background-color: #ededed;
  margin-bottom: 0;
  overflow: hidden;
}

.regional-broadcast article header .status {
  color: white;
  float: left;
  font-size: 0.5em;
  font-weight: 300;
  height: 20px;
  line-height: 20px;
  padding-left: 20px;
  float: left;
  width: 96px;
}

.regional-broadcast article header .start-time {
  color: #141414;
  float: left;
  font-size: 0.583em;
  font-weight: 300;
  padding: 0 10px 2px 16px;
  text-align: center;
}

.regional-broadcast article header .icons-wrapper {
  float: left;
  margin-top: 6px;
}

.regional-broadcast article header .icons-wrapper>i {
  float: left;
  margin: 0 4px 8px 0;
}

.regional-broadcast article .regional-broadcast__now-playing-title {
  font-size: 0.875em;
  font-weight: 300;
  padding: 20px 26px 0 26px;
  line-height: 1.250em;
  float: left;
  width: 100%;
  color: #141414;
}

.regional-broadcast article .regional-broadcast__now-playing-type {
  font-size: 0.75em;
  font-weight: 300;
  color: #515151;
  padding: 0 10px;
  float: left;
  width: 100%;
  padding: 0 26px 20px 26px;
}

.regional-broadcast article.regional-broadcast__now-playing header .status {
  background-color: #db3b64;
}

.regional-broadcast article.regional-broadcast__later header .status {
  background-color: #5c73a5;
}

.shop {
  margin-bottom: 16px;
  padding-bottom: 30px;
  border-bottom: solid 1px #d9d9d9;
}

.shop>header {
  color: #141414;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: solid 1px #d9d9d9;
  height: auto;
}

.shop>header .shop__full-shop {
  display: none;
}

@media (min-width: 768px) {
  .shop>header .shop__full-shop {
    display: block;
  }
}

.shop .shop__slider .shop__slider__arrow-prev,
.shop .shop__slider .shop__slider__arrow-next {
  display: none;
}

@media (min-width: 768px) {

  .shop .shop__slider .shop__slider__arrow-prev,
  .shop .shop__slider .shop__slider__arrow-next {
    display: block;
    top: 150px;
    margin-top: -32px;
    z-index: 99;
    position: absolute;
  }

  .shop .shop__slider .shop__slider__arrow-prev {
    left: 0;
  }

  .shop .shop__slider .shop__slider__arrow-next {
    right: 0;
  }
}

.shop .shop__slider .shop__slide-wrapper {
  overflow: hidden;
}

.shop .shop__slider .shop__slider__pagination-wrapper {
  clear: both;
  float: left;
  left: 50%;
  margin: 25px 0 0;
  position: relative;
  text-align: left;
}

.shop .shop__slider .shop__pagination {
  position: relative;
  left: -50%;
  text-align: left;
}

@media (min-width: 768px) {
  .shop .shop__slider .shop__pagination {
    display: none;
  }
}

.shop .shop__slider>ul>li article .wrapper {
  width: 34.482759%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: none;
  height: 155px;
}

.shop .shop__slider>ul>li article .wrapper img {
  height: 100%;
  width: 100%;
}

.shop .shop__slider>ul>li article figcaption {
  width: 65.517241%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  padding-left: 13px;
  padding-right: 13px;
}

.shop .shop__slider>ul>li article figcaption header {
  color: #141414;
  font-size: 1.125em;
  font-weight: 300;
  padding: 0 0 16px 0;
  margin-bottom: 0;
}

.shop .shop__slider>ul>li article figcaption p {
  color: #141414;
  font-size: 0.875em;
  font-weight: 300;
  padding-bottom: 12px;
  line-height: 1.375em;
}

.shop .shop__slider>ul>li article figcaption footer {
  font-size: 1.125em;
  font-weight: 300;
  color: #0083c9;
  text-align: left;
}

@media (min-width: 480px) {
  .shop .shop__slider>ul>li article .wrapper {
    height: 190px;
  }
}

@media (min-width: 568px) {
  .shop .shop__slider>ul>li article .wrapper {
    height: 210px;
  }
}

@media (min-width: 768px) {
  .shop .shop__slider>ul>li article figure {
    padding-left: 13px;
    padding-right: 13px;
  }

  .shop .shop__slider>ul>li article .wrapper {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
    padding: 0;
  }

  .shop .shop__slider>ul>li article .wrapper img {
    height: 100%;
    width: 85%;
  }

  .shop .shop__slider>ul>li article figcaption {
    padding-left: 0;
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .shop .shop__slider>ul>li article figcaption header {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
    padding: 26px 0 16px 0;
  }

  .shop .shop__slider>ul>li article figcaption p {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .shop .shop__slider>ul>li article figcaption footer {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}

@media (min-width: 1198px) {
  .shop .shop__slider>ul>li article .wrapper {
    height: 206px;
  }

  .shop .shop__slider>ul>li article .wrapper img {
    width: 90%;
  }
}

.shop .shop__slider>ul>li {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0%;
  clear: none;
}

@media (min-width: 768px) {
  .shop .shop__slider>ul>li {
    width: 25%;
    clear: right;
    float: left;
    margin-left: 0%;
    margin-right: 0%;
  }
}

@media (min-width: 568px) {
  .shop .shop__slider>ul>li {
    width: 25%;
    clear: right;
    float: left;
    margin-left: 0%;
    margin-right: 0%;
  }
}

@media (min-width: 1024px) {
  .shop .shop__slider>ul>li {
    width: 20%;
    clear: right;
    float: left;
    margin-left: 0%;
    margin-right: 0%;
  }
}

@media (min-width: 1198px) {
  .shop .shop__slider>ul>li {
    width: 16.666667%;
    clear: right;
    float: left;
    margin-left: 0%;
    margin-right: 0%;
  }
}

.vod-section .vod-subsection-wrapper .vod-subsection .vod-element-table article figure .image-wrapper .icon-duration,
.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure .image-wrapper .icon-duration,
.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption .icon-duration,
.vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure .image-wrapper .icon-duration {
  background: rgba(0, 0, 0, 0.6);
  bottom: 2px;
  color: #d3d3de;
  font-size: 11px;
  left: 1px;
  padding: 0 7px;
  position: absolute;
  line-height: 1.6;
}

.vod-section .vod-subsection-wrapper .vod-subsection .vod-element-table article figure .image-wrapper .icon-duration.position,
.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure .image-wrapper .icon-duration.position,
.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption .icon-duration.position,
.vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure .image-wrapper .icon-duration.position {
  bottom: 57px;
}

.vod-section .vod-subsection-wrapper .vod-subsection .vod-element-table article figure .image-wrapper .icon-duration.positon-episodes,
.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure .image-wrapper .icon-duration.positon-episodes,
.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption .icon-duration.positon-episodes,
.vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure .image-wrapper .icon-duration.positon-episodes {
  background: none;
  color: #141414;
  font-weight: 400 !important;
  font-size: 13px;
  padding: 0;
  position: static;
  z-index: 999;
}

@media (min-width: 768px) {

  .vod-section .vod-subsection-wrapper .vod-subsection .vod-element-table article figure .image-wrapper .icon-duration.positon-episodes,
  .vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure .image-wrapper .icon-duration.positon-episodes,
  .vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption .icon-duration.positon-episodes,
  .vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure .image-wrapper .icon-duration.positon-episodes {
    color: #d3d3de;
    font-weight: 300 !important;
  }
}

.vod-section {
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .vod-section {
    display: table;
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .vod-section .header-wrapper {
    display: table-caption;
    margin-top: -30px !important;
  }
}

@media (min-width: 768px) {
  .vod-section .header-navigation {
    display: table-row;
  }
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-wrapper {
    display: table-row;
  }
}

.vod-section .vod-subsection-wrapper .vod-separator {
  display: none;
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-wrapper .vod-separator {
    display: table-cell;
    width: 3.125%;
  }
}

@media (min-width: 1024px) {
  .vod-section .vod-subsection-wrapper .vod-separator {
    width: 1.5625%;
  }
}

.vod-section .vod-subsection-wrapper .vod-subsection {
  display: block;
  position: relative;
}

.vod-section .vod-subsection-wrapper .vod-subsection .vod-element-table {
  display: none;
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-wrapper .vod-subsection {
    display: table-cell;
    vertical-align: top;
    width: 140px;
    padding-right: 15px;
  }

  .vod-section .vod-subsection-wrapper .vod-subsection.vod-newest {
    width: 125px;
    padding-right: 0;
  }
}

.vod-section .vod-subsection-wrapper .vod-subsection.vod-subsection-expanded .vod-element-table {
  display: block;
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-wrapper .vod-subsection.vod-subsection-expanded {
    display: table-cell;
    width: auto;
  }
}

@media (min-width: 768px) {
  .vod-section .vod-element-table {
    display: table !important;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .vod-section .vod-element-table .vod-element-row {
    display: table-row;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .vod-section .vod-element-table .vod-element-row .vod-element-cell {
    display: none;
    position: relative;
    vertical-align: top;
    height: 100%;
  }

  .vod-section .vod-element-table .vod-element-row .vod-element-cell:last-child {
    display: table-cell;
  }

  .vod-section .vod-element-table .vod-element-row .vod-element-cell li {
    padding-bottom: 1px;
  }

  .vod-section .vod-element-table .vod-element-row .vod-element-cell li:last-child {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-expanded .vod-element-table .vod-element-row .vod-element-cell {
    display: table-cell;
    width: auto;
    padding-right: 1px;
  }

  .vod-section .vod-subsection-expanded .vod-element-table .vod-element-row .vod-element-cell:last-child {
    width: 125px;
    padding-right: 0;
  }
}

@media (min-width: 1024px) {
  .vod-section .vod-subsection-expanded .vod-element-table .vod-element-row .vod-element-cell {
    width: 381px;
  }

  .vod-section .vod-subsection-expanded .vod-element-table .vod-element-row .vod-element-cell:last-child {
    width: auto;
  }
}

@media (min-width: 1198px) {
  .vod-section .vod-subsection-expanded .vod-element-table .vod-element-row .vod-element-cell {
    width: 581px;
  }
}

.vod-section {
  position: relative;
  margin-top: 30px;
}

.vod-section .header-wrapper {
  margin: 0 4.545455%;
}

.vod-section .header-wrapper header {
  color: #141414;
  font-weight: 300;
  background: white;
}

@media (min-width: 768px) {
  .vod-section .header-wrapper {
    margin: 0 3.5625%;
  }
}

@media (min-width: 1024px) {
  .vod-section .header-wrapper {
    margin: 0 1.5625%;
  }
}

.vod-section .header-navigation {
  position: relative;
  margin: 10px 4.545455% 0;
}

.vod-section .header-navigation .menu-button {
  cursor: pointer;
  position: absolute;
  top: -33px;
  right: -2px;
  font-size: 14px;
  font-weight: 300;
  display: block;
  color: #b0b0b0;
}

.vod-section .header-navigation .menu-button:after {
  content: "\f0c9";
  font-family: FontAwesome;
  font-size: 28px;
  margin-left: 14px;
  vertical-align: middle;
  display: inline-block;
}

@media (min-width: 768px) {
  .vod-section .header-navigation .menu-button {
    display: none;
  }
}

.vod-section .header-navigation ul {
  display: none;
  background: white;
}

@media (min-width: 768px) {
  .vod-section .header-navigation ul {
    display: block;
    position: absolute;
    right: 0;
    top: -33px;
  }
}

.vod-section .header-navigation ul.menu_visible {
  display: block;
}

.vod-section .header-navigation ul li {
  display: block;
  font-size: 20px;
  font-weight: 300;
  line-height: 38px;
  border-bottom: solid 1px #e9e9e9;
}

@media (min-width: 768px) {
  .vod-section .header-navigation ul li {
    float: left;
    border: none;
    font-size: 16px;
    line-height: 20px;
    margin-left: 20px;
  }
}

.vod-section .header-navigation ul li:first-child {
  border-top: solid 1px #e9e9e9;
}

@media (min-width: 768px) {
  .vod-section .header-navigation ul li:first-child {
    border: none;
  }
}

.vod-section .header-navigation ul li a {
  display: block;
  text-decoration: none;
  color: #141414;
}

.vod-section .header-navigation ul li a:visited {
  color: #141414;
}

.vod-section .header-navigation ul li a:focus {
  color: #141414;
}

.vod-section .header-navigation ul li a:hover {
  color: #1e6bb3;
}

.vod-section .header-navigation ul li a:active {
  color: #141414;
}

.vod-section .vod-subsection-wrapper {
  background: #e6e6e6;
}

.vod-section .vod-subsection-wrapper .vod-subsection>header {
  cursor: pointer;
  color: #141414;
  font-size: 22px;
  line-height: 50px;
  height: 50px;
  border-bottom: solid 1px #b0b0b0;
  padding: 0 4.545455%;
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-wrapper .vod-subsection>header {
    color: #141414;
    font-size: 20px;
    font-weight: 300;
    line-height: 50px;
    height: 50px;
    border: none;
    padding: 0;
  }
}

.vod-section .vod-subsection-wrapper .vod-subsection>header:after {
  content: "\f107";
  color: #b0b0b0;
  font-family: FontAwesome;
  font-size: 1.5em;
  vertical-align: middle;
  display: inline-block;
  float: right;
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-wrapper .vod-subsection>header:after {
    display: none;
  }
}

.vod-section .vod-subsection-wrapper .vod-subsection .vod-subsection-arrow {
  display: none;
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-wrapper .vod-subsection .vod-subsection-arrow {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: #e6e6e6;
    z-index: 900;
  }

  .vod-section .vod-subsection-wrapper .vod-subsection .vod-subsection-arrow>i {
    font-size: 28px;
    color: #141414;
  }

  .vod-section .vod-subsection-wrapper .vod-subsection .vod-subsection-arrow.left {
    left: 0;
  }

  .vod-section .vod-subsection-wrapper .vod-subsection .vod-subsection-arrow.right {
    right: 15px;
  }
}

.vod-section .vod-subsection-wrapper .vod-subsection.vod-subsection-expanded .vod-subsection-arrow {
  display: none;
}

.vod-section .vod-subsection-wrapper .vod-subsection.vod-subsection-expanded>header:after {
  content: "\f106";
}

@media (min-width: 768px) {

  .vod-section .vod-subsection-wrapper .vod-subsection:nth-child(2)>header:after,
  .vod-section .vod-subsection-wrapper .vod-subsection:nth-child(3)>header:after {
    content: "\f105";
    color: #141414;
    font-family: FontAwesome;
    font-size: 0.875em;
    margin-left: 0.375em;
    vertical-align: middle;
    display: inline-block;
    float: none;
  }
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-wrapper .vod-subsection:nth-child(4)>header {
    text-align: right;
  }

  .vod-section .vod-subsection-wrapper .vod-subsection:nth-child(4)>header:before {
    content: "\f104";
    color: #141414;
    font-family: FontAwesome;
    font-size: 0.875em;
    margin-left: 0.375em;
    vertical-align: middle;
    display: inline-block;
    float: none;
  }
}

@media (min-width: 768px) {

  .vod-section .vod-subsection-wrapper .vod-subsection.vod-subsection-expanded>header:before,
  .vod-section .vod-subsection-wrapper .vod-subsection.vod-subsection-expanded>header:after {
    display: none;
  }
}

.vod-section .vod-subsection-wrapper.newest .vod-recommended .vod-subsection-arrow.left {
  display: none;
}

.vod-section .vod-subsection-wrapper.popular .vod-recommended .vod-subsection-arrow.right {
  display: none;
}

.vod-section a {
  text-decoration: none;
}

@media (min-width: 768px) {
  .vod-section a {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 283px;
  }
}

@media (min-width: 768px) {
  .vod-section a article figure figcaption {
    display: none;
  }
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI4MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC44Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuOSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(55%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0.9)));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.9) 100%);
  }
}

.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure .image-wrapper {
  position: relative;
}

@media (min-width: 1198px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure .image-wrapper {
    width: 381px;
    float: right;
  }
}

.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption {
  padding: 16px 20px 26px 20px;
  font-weight: 300;
  color: white;
  background-color: #b6b6b6;
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 5px 10px 5px;
    z-index: 901;
    background: transparent;
  }
}

@media (min-width: 1198px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption {
    position: inherit;
  }
}

.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption header {
  font-size: 20px;
  line-height: 25px;
}

.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption header span {
  display: block;
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption header {
    color: white;
    font-size: 26px;
    font-weight: 300;
    line-height: 30px;
    height: auto;
  }
}

@media (min-width: 1198px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption header {
    width: 361px;
    position: absolute;
    right: 10px;
    bottom: 8px;
    z-index: 990;
  }
}

.vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption section {
  display: none;
}

@media (min-width: 1198px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:first-child article figure figcaption section {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    background: white;
    color: #141414;
    padding: 10px;
    text-align: right;
    font-size: 13px;
    line-height: 1.5;
    height: 100%;
    z-index: 990;
  }
}

.vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure {
  overflow: hidden;
  background-color: #fff;
  border-top: 1px solid #b6b6b6;
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure {
    background: transparent;
    border: none;
  }
}

@media (min-width: 1024px) {

  .vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure.hover figcaption,
  .vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure figcaption.ng-animate {
    padding: 10px 15px;
    background: white;
  }
}

.vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure .image-wrapper {
  position: relative;
  width: 40%;
  float: left;
}

@media (min-width: 768px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure .image-wrapper {
    width: 100%;
    float: none;
  }
}

@media (min-width: 1024px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure .image-wrapper {
    width: 125px;
    float: none;
  }
}

.vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure figcaption {
  width: 60%;
  float: left;
  font-size: 0.675em;
}

@media (min-width: 1024px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure figcaption {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 94px;
  }
}

.vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure figcaption header {
  padding: 10px 15px;
  font-size: 13px;
  line-height: 17px;
}

@media (min-width: 1024px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure figcaption header {
    color: #626262;
    font-size: 13px;
    line-height: 17px;
    font-weight: 300;
    background: white;
    margin-left: 125px;
    height: 100%;
  }
}

.vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure figcaption section {
  display: none;
}

@media (min-width: 1024px) {
  .vod-section .vod-subsection-expanded .vod-element-cell:last-child article figure figcaption section {
    display: block;
    color: #626262;
    background: white;
    font-size: 13px;
    line-height: 15px;
    font-weight: 300;
    height: 100%;
    overflow: hidden;
    padding: 0;
  }
}

.vod-section .vod-separator-row {
  background: #e6e6e6;
  display: none;
  height: 40px;
  position: absolute;
  width: 100%;
}

@media (min-width: 768px) {
  .vod-section .vod-separator-row {
    display: block;
  }
}

main .col-412,
main .col-812,
main .col-1212 {
  width: 100%;
}

main .col-412 {
  margin-bottom: 32px;
  overflow: hidden;
  width: 100%;
  clear: right;
  float: right;
  padding-left: 0.6em;
  padding-right: 0.6em;
}

@media (min-width: 768px) {
  main .col-412 {
    height: 320px;
    margin-bottom: 24px;
    width: 50%;
    clear: right;
    float: left;
    padding-left: 0.6em;
    padding-right: 0.6em;
  }
}

@media (min-width: 1024px) {
  main .col-412 {
    height: 310px;
    margin-bottom: 24px;
    width: 33.333333%;
    clear: right;
    float: left;
    padding-left: 0.6em;
    padding-right: 0.6em;
  }
}

@media (min-width: 1024px) {
  main .col-412.more-about {
    height: auto;
  }
}

main .col-812 {
  overflow: hidden;
  width: 100%;
  clear: right;
  float: right;
  padding-left: 0.6em;
  padding-right: 0.6em;
}

@media (min-width: 1024px) {
  main .col-812 {
    width: 66.666667%;
    clear: right;
    float: left;
    padding-left: 0.6em;
    padding-right: 0.6em;
  }
}

main .col-1212 {
  overflow: hidden;
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  padding-left: 0.6em;
  padding-right: 0.6em;
  overflow: hidden;
  *zoom: 1;
}

main .col-1212.wide {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

header.arrow-right,
header.arrow-left,
header.headline,
header.bbd,
header.bb {
  line-height: 1.2em;
  padding-bottom: 12px;
}

main.bt {
  border-top: 6px solid #9c9c9c;
}

.context-list__item figure .wrapper>span,
.episodes-medium article .series__wrapper>span,
.episodes-small article .wrapper>span {
  bottom: 12px;
  left: 12px;
  position: absolute;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.context-list__item figure .wrapper>span i:first-child,
.episodes-medium article .series__wrapper>span i:first-child,
.episodes-small article .wrapper>span i:first-child {
  color: black;
}

.context-list__item figure .wrapper>span i:nth-child(2),
.episodes-medium article .series__wrapper>span i:nth-child(2),
.episodes-small article .wrapper>span i:nth-child(2) {
  color: white;
}

.episodes article figure .series__wrapper>span,
.we-recommend article figure .series__wrapper>span {
  font-size: 2em;
  left: 50%;
  margin-left: -32px;
  margin-top: 32px;
  position: absolute;
  top: 25%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

@media (min-width: 768px),
(min-width: 1024px) {

  .episodes article figure .series__wrapper>span,
  .we-recommend article figure .series__wrapper>span {
    top: 15%;
  }
}

.episodes article figure .series__wrapper>span i:first-child,
.we-recommend article figure .series__wrapper>span i:first-child {
  color: white;
}

.episodes article figure .series__wrapper>span i:nth-child(2),
.we-recommend article figure .series__wrapper>span i:nth-child(2) {
  color: black;
}

.context-embed.gallery .wrapper>span,
.gallery .context-list__item figure .wrapper>span {
  bottom: 12px;
  left: 20px;
  position: absolute;
  opacity: 0.9;
}

.context-embed.gallery .wrapper>span i:first-child,
.gallery .context-list__item figure .wrapper>span i:first-child {
  color: white;
}

.context-embed.gallery .wrapper>span i:nth-child(2),
.gallery .context-list__item figure .wrapper>span i:nth-child(2) {
  color: black;
}

.context-list.images figure figcaption>span i:first-child {
  color: white;
}

.context-list.images figure figcaption>span i:nth-child(2) {
  color: #949494;
}

.context-embed.attachments ul li>span i:first-child {
  color: #e4e5e5;
}

.context-embed.attachments ul li>span i:nth-child(2) {
  color: black;
  font-size: 0.75em;
}

.no-touch .gallery-slider a.icon-close>span,
.plan__telecast-full .icon-close>span {
  position: relative;
}

.no-touch .gallery-slider a.icon-close>span i:first-child,
.plan__telecast-full .icon-close>span i:first-child {
  color: white;
}

.no-touch .gallery-slider a.icon-close>span i:nth-child(2),
.plan__telecast-full .icon-close>span i:nth-child(2) {
  color: black;
}

.context-list__item figure .wrapper .icon-legend,
.episodes article figure .series__wrapper .icon-legend,
.episodes-medium article .series__wrapper .icon-legend,
.episodes-small article .wrapper .icon-legend,
.last__episode figure .wrapper .icon-legend {
  left: 16px;
  position: absolute;
  top: 20px;
}

.context-list__item figure .wrapper .icon-duration,
.episodes article figure .series__wrapper .icon-duration,
.episodes-medium article .series__wrapper .icon-duration,
.episodes-small article .wrapper .icon-duration,
.last__episode figure .wrapper .icon-duration,
.only-with-us figure .only-with-us__last-wrapper .icon-duration {
  background: rgba(0, 0, 0, 0.6);
  bottom: 5px;
  color: #d3d3de;
  font-size: 12px;
  left: 1px;
  padding: 0 9px;
  position: absolute;
}

.context-list__item figure .wrapper .icon-duration.position,
.episodes article figure .series__wrapper .icon-duration.position,
.episodes-medium article .series__wrapper .icon-duration.position,
.episodes-small article .wrapper .icon-duration.position,
.last__episode figure .wrapper .icon-duration.position,
.only-with-us figure .only-with-us__last-wrapper .icon-duration.position {
  bottom: 57px;
}

.context-list__item figure .wrapper .icon-duration.positon-episodes,
.episodes article figure .series__wrapper .icon-duration.positon-episodes,
.episodes-medium article .series__wrapper .icon-duration.positon-episodes,
.episodes-small article .wrapper .icon-duration.positon-episodes,
.last__episode figure .wrapper .icon-duration.positon-episodes,
.only-with-us figure .only-with-us__last-wrapper .icon-duration.positon-episodes {
  bottom: 5px;
  left: 5px;
}

@media (min-width: 768px) {

  .context-list__item figure .wrapper .icon-duration.positon-episodes,
  .episodes article figure .series__wrapper .icon-duration.positon-episodes,
  .episodes-medium article .series__wrapper .icon-duration.positon-episodes,
  .episodes-small article .wrapper .icon-duration.positon-episodes,
  .last__episode figure .wrapper .icon-duration.positon-episodes,
  .only-with-us figure .only-with-us__last-wrapper .icon-duration.positon-episodes {
    bottom: 57px;
    left: 1px;
  }
}

.duel article .players .player__img .player__result span {
  display: block;
}

.duel article .players .player__img .player__result>span {
  background: rgba(0, 0, 0, 0.15);
}

.duel article .players .player__img .player__result .results__graph {
  height: 1.5em;
  width: 100%;
}

.duel article .players .player__img .player__result .results__graph>span {
  left: 0;
  position: absolute;
  top: 0;
}

.duel article .players .player__img .player__result .results__graph .results__graph-count {
  color: #fff;
  font-size: 0.8em;
  padding: 0 10px;
  z-index: 3;
}

.duel article .players .player__img .player__result .results__graph .results__graph-bar {
  background: #b11f30;
  height: 1.5em;
  z-index: 2;
}

.zoom-opacity-wide {
  background-color: rgba(0, 0, 0, 0.9);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
}

main {
  clear: both;
}

main.content-full {
  padding-top: 25px;
}

header.header__main {
  clear: both;
  margin: 20px;
  padding: 0;
}

header h3 {
  font-size: 0.6em;
}

header.arrow-right {
  overflow: hidden;
}

header.arrow-right a {
  display: block;
  float: right;
  margin-right: 16px;
}

header.arrow-right .fa-angle-right {
  color: rgba(46, 131, 196, 0.6);
}

header.arrow-left a {
  display: inline-block;
  margin-left: 6px;
}

header.arrow-left .fa-angle-right {
  color: rgba(46, 131, 196, 0.6);
  margin-right: 12px;
}

header.headline.headline__double-color {
  position: relative;
}

header.headline.headline__double-color:before {
  background: #ccc;
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  width: 100%;
}

header.headline.headline__double-color:after {
  background: rgba(0, 0, 0, 0.15);
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  width: 50%;
}

header.headline.headline__double-color.headline__double-color--46:after {
  width: 43%;
}

header.bbd {
  border-bottom: 1px solid #e6e6e6;
}

header.bb {
  border-bottom: 1px solid #48a5db;
}

.pagination-warpper {
  border-top: 1px solid #e5e6e6;
  clear: both;
  padding-top: 10px;
  width: 100%;
}

nav.pagination {
  clear: both;
  float: left;
  left: 50%;
  margin: 10px 0 25px 0;
  position: relative;
  text-align: left;
}

nav.pagination ul {
  position: relative;
  left: -50%;
  text-align: left;
}

nav.pagination ul li {
  display: inline-block;
  padding: 0 4px;
  vertical-align: middle;
}

nav.pagination ul li a {
  display: inline-block;
  vertical-align: middle;
  color: #141414;
}

nav.pagination ul li a:visited {
  color: #141414;
}

nav.pagination ul li a:focus {
  color: #141414;
}

nav.pagination ul li a:hover {
  color: #141414;
}

nav.pagination ul li a:active {
  color: #141414;
}

nav.pagination ul li a:hover {
  text-decoration: none;
}

nav.pagination ul li span {
  font-size: 1em;
}

nav.pagination ul li .fa-circle {
  color: #e5e6e6;
}

nav.pagination ul li .fa-empty {
  color: #141414;
}

nav.pagination ul li .fa-chevron-left,
nav.pagination ul li .fa-chevron-right {
  font-size: 0.6em;
  line-height: 2.3em;
}

nav.pagination ul li .fa-empty {
  font-size: 0.9em;
}

nav.pagination ul li>i {
  font-size: 0.5em;
  vertical-align: middle;
}

.entertainment {
  display: inline-block;
  color: #fff;
  font-size: 0.850em;
  padding: 6px 10px;
}

.triangle {
  position: relative;
}

.triangle.triangle-top-right:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-right-color: white;
  border-width: 0px 32px 32px 0;
}

.triangle.triangle-top-left:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-top-color: white;
  border-width: 32px 32px 0 0px;
}

.triangle.triangle-top-left--gray:before,
.triangle.triangle-top-left--gray:after {
  border-top-color: #f4f4f4;
}

.btns {
  margin: 10px 0;
  overflow: hidden;
}

.btns li {
  float: left;
  margin-right: 10px;
}

.btns a.btns__btn {
  border: 1px solid #9a9a9a;
  border-bottom: 3px solid #9a9a9a;
  color: #000;
  display: block;
  font-size: 0.850em;
  font-weight: 600 !important;
  padding: 8px 12px;
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.max-width img {
  max-width: 100%;
}

.mb.mb-x2 {
  margin-bottom: 2em;
}

.extras {
  display: table;
}

.extras * {
  display: block;
  vertical-align: middle;
  float: left;
}

.extras nav {
  display: inline-block;
}

@media (min-width: 768px) {
  .extras nav {
    display: table-cell;
  }
}

.extras nav.extras__legend {
  padding-left: 20px;
}

.extras nav.extras__legend a {
  font-size: 0.9em;
}

.extras nav.extras__email-print li {
  padding: 0 10px;
}

.extras li {
  height: 24px;
  padding-right: 10px;
}

.extras li>div {
  vertical-align: middle;
}

.extras li>div#___plusone_0 {
  display: table-cell !important;
  width: 60px !important;
}

.extras li>div#___plusone_0 iframe {
  max-width: 70px;
  width: auto !important;
}

.extras .twitter-share-button {
  width: 100px !important;
}

.extras ul {
  overflow: hidden;
}

.extras nav {
  padding: 20px 0 0;
}

.extras nav.extras__legend {
  padding-bottom: 20px;
  padding-top: 18px;
}

@media (min-width: 768px) {
  .extras nav.extras__legend {
    margin-left: 32px;
  }
}

.extras nav.extras__legend a {
  color: #141414;
  padding-right: 5px;
  font-weight: 400 !important;
}

.extras nav.extras__legend a:visited {
  color: #141414;
}

.extras nav.extras__legend a:focus {
  color: #141414;
}

.extras nav.extras__legend a:hover {
  color: #1e6bb3;
}

.extras nav.extras__legend a:active {
  color: #141414;
}

.adv {
  text-align: center;
}

@media (min-width: 768px) {
  .adv__bilbord>div {
    background: #eaeaea;
    clear: both;
    display: block;
    padding: 20px 0;
    overflow: hidden;
    *zoom: 1;
  }
}

.touch .adv__bilbord {
  display: none;
}

.adv__rectangle {
  border: 1px solid #E1E1E1;
  margin-bottom: 20px;
  overflow: hidden;
  margin-top: 15px;
  height: 290px;
}

.adv__rectangle header {
  font-size: 0.6em;
  letter-spacing: 10px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
}

.adv__rectangle-wrapper {
  padding-bottom: 20px;
  text-align: center;
}

.adv-gallery-space-top {
  margin-top: 100px;
}

.context-embed {
  overflow: hidden;
  margin: 12px 0 20px 0;
}

.context-embed figure figcaption header {
  background: #e4e5e5;
  color: #141414;
  font-size: 1em;
  padding: 20px;
}

.context-embed article>p {
  padding: 12px 0;
}

.context-embed.image .wrapper>div {
  background: #ccc;
}

.context-embed.image .wrapper>div img {
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  width: auto !important;
}

.context-embed.gallery a {
  color: #141414;
}

.context-embed.gallery a:visited {
  color: #141414;
}

.context-embed.gallery a:focus {
  color: #141414;
}

.context-embed.gallery a:hover {
  color: #141414;
}

.context-embed.gallery a:active {
  color: #141414;
}

.context-embed.gallery a:hover {
  text-decoration: none;
}

.context-embed.gallery .wrapper {
  position: relative;
}

.context-embed.attachments {
  padding-top: 18px;
}

.context-embed.attachments>header {
  border-bottom: 1px solid #e4e5e5;
  font-size: 1.4em;
  padding-bottom: 16px;
}

.context-embed.attachments ul li {
  border-bottom: 1px solid #e4e5e5;
  display: table;
  padding: 10px 4px;
  width: 100%;
}

.context-embed.attachments ul li>span {
  display: inline-block;
}

.context-embed.attachments ul li>span.file {
  display: table-cell;
  font-size: 0.8em;
  line-height: 1.2em;
  padding-left: 8px;
  text-transform: uppercase;
  vertical-align: middle;
  width: 100%;
}

.context-embed.attachments ul li>span.file .file__type {
  color: #777;
}

.context-embed.attachments ul li>span a {
  color: #141414;
}

.context-embed.attachments ul li>span a:visited {
  color: #141414;
}

.context-embed.attachments ul li>span a:focus {
  color: #141414;
}

.context-embed.attachments ul li>span a:hover {
  color: #141414;
}

.context-embed.attachments ul li>span a:active {
  color: #141414;
}

.context-embed.attachments ul li>span a:hover {
  text-decoration: none;
}

@media (min-width: 1024px) {
  main .context-box-list {
    height: auto;
  }
}

.context-box-list .inner {
  overflow: hidden;
}

.context-box-list .border {
  border: 1px solid #898989;
}

.wide-element .context-box-list__item {
  width: 33.333333%;
  clear: right;
  float: left;
  padding-right: 1px;
}

@media (min-width: 1024px) {
  .wide-element .context-box-list__item {
    width: 50%;
    clear: right;
    float: left;
    padding-right: 1px;
  }
}

.image-with-text .context-box-list__item {
  width: 100%;
  clear: right;
  float: right;
  padding-right: 0;
}

.image-with-text .context-box-list__item figure {
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
}

.image-with-text .context-box-list__item:nth-child(2n+1) {
  display: none;
}

@media (min-width: 1024px) {
  .image-with-text .context-box-list__item:nth-child(2n+1) {
    display: block;
  }
}

.image-with-text .context-box-list__item:last-child figure {
  border-bottom: none;
}

.image-with-text .context-box-list__item .wrapper {
  width: 45%;
  clear: right;
  float: left;
  padding-right: 10px;
  clear: both;
}

.image-with-text .context-box-list__item figcaption {
  width: 55.0%;
  clear: right;
  float: right;
  padding-right: 0;
}

.context-box-list__item a {
  color: #141414;
}

.context-box-list__item a:visited {
  color: #141414;
}

.context-box-list__item a:focus {
  color: #141414;
}

.context-box-list__item a:hover {
  color: #141414;
}

.context-box-list__item a:active {
  color: #141414;
}

.context-box-list__item a:hover {
  text-decoration: none;
}

.context-box-list__item figure figcaption {
  display: inline-block;
  height: 48px;
  overflow: hidden;
}

.context-box-list__item figure figcaption>p {
  display: inline-block;
  font-size: 0.850em;
  height: 3.2em;
  line-height: 1.2;
  padding: 10px;
  overflow: hidden;
  vertical-align: middle;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .context-box-list__item figure figcaption {
    height: 62px;
  }

  .context-box-list__item figure figcaption>p {
    height: 4.4em;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .image-with-text .context-box-list__item figure figcaption {
    height: 82px;
  }

  .image-with-text .context-box-list__item figure figcaption>p {
    height: 5.5em;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .image-with-text .context-box-list__item figure figcaption {
    height: 70px;
  }

  .image-with-text .context-box-list__item figure figcaption>p {
    height: 5.5em;
    padding: 4px 10px;
  }
}

.context-list {
  overflow: hidden;
}

@media (min-width: 768px) {
  .context-list>article {
    width: 50%;
    clear: right;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
  }

  .context-list>article:nth-child(2n+2) {
    width: 50%;
    clear: right;
    float: right;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 768px) {
  .context-list.wide>article {
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0;
  }

  .context-list.wide>article:nth-child(2n+2) {
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .context-list.swiper-wrapper>article {
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0;
  }

  .context-list.swiper-wrapper>article:nth-child(2n+2) {
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0;
  }
}

.context-list.images {
  padding: 20px 0;
}

@media (min-width: 320px) and (max-width: 568px) and (orientation: portrait) {
  .context-list.images>figure {
    width: 50%;
    clear: right;
    float: left;
    padding-left: 9px;
    padding-right: 9px;
  }

  .context-list.images>figure:nth-child(2n+2) {
    width: 50%;
    clear: right;
    float: left;
    padding-left: 9px;
    padding-right: 9px;
  }
}

@media (min-width: 568px) {
  .context-list.images>figure {
    width: 33.333333%;
    clear: right;
    float: left;
    padding-left: 9px;
    padding-right: 9px;
  }

  .context-list.images>figure:nth-child(3n+3) {
    width: 33.333333%;
    clear: right;
    float: left;
    padding-left: 9px;
    padding-right: 9px;
  }
}

.context-list.images figure:hover {
  cursor: pointer;
}

.context-list.images figure figcaption {
  margin-top: -20px;
  margin-left: -20px;
}

.context-list.half-content>article {
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
}

.context-list.half-content>article:nth-child(2n+2) {
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
}

@media (min-width: 768px) {
  .context-list.half-content>article {
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0;
  }

  .context-list.half-content>article:nth-child(2n+2) {
    width: 100%;
    clear: right;
    float: right;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .context-list.half-content .wrapper {
    width: 50%;
    clear: right;
    float: left;
    padding-right: 20px;
    clear: both;
  }

  .context-list.half-content figcaption {
    width: 50%;
    clear: right;
    float: right;
    padding-right: 0;
  }
}

.context-list.half-content figcaption {
  background: none;
  margin: 0;
  padding: 0;
  position: static;
  top: 0;
}

.context-list.half-content figcaption p {
  display: block;
  font-size: 0.9em;
  margin-bottom: 8px;
}

.context-list__item a {
  color: #141414;
}

.context-list__item a:visited {
  color: #141414;
}

.context-list__item a:focus {
  color: #141414;
}

.context-list__item a:hover {
  color: #141414;
}

.context-list__item a:active {
  color: #141414;
}

.context-list__item a:hover {
  text-decoration: none;
}

.context-list__item figure {
  margin-bottom: 20px;
  overflow: hidden;
  padding-bottom: 4em;
  position: relative;
}

.context-list__item figure .wrapper {
  position: relative;
}

.context-list__item figure .wrapper>div {
  background: #ccc;
}

.context-list__item figure .wrapper>div>img {
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  width: auto !important;
}

.context-list__item figure figcaption {
  background: #e4e5e5;
  height: 100%;
  margin-top: -4em;
  padding: 5px 15px 25px 15px;
  position: absolute;
  top: 100%;
  width: 100%;
}

.context-list__item figure figcaption p {
  display: none;
}

.with-summary .context-list__item figure {
  padding-bottom: 7em;
}

.with-summary .context-list__item figure figcaption {
  margin-top: -7em;
}

.with-summary .context-list__item figure figcaption header {
  padding-bottom: 8px;
}

.with-summary .context-list__item figure figcaption p {
  display: block;
  font-size: 0.825em;
  height: 2.4em;
  line-height: 1.2em;
  overflow: hidden;
}

.wide .context-list__item figure {
  padding-bottom: 7em;
}

.wide .context-list__item figure figcaption {
  margin-top: -7em;
}

.wide .context-list__item figure figcaption header {
  padding-bottom: 8px;
}

.wide .context-list__item figure figcaption p {
  display: block;
  font-size: 0.825em;
  height: 3.9em;
  line-height: 1.3em;
  overflow: hidden;
}

.half-content .context-list__item figure {
  padding-bottom: 0;
  width: 100%;
}

.half-content .context-list__item figure header {
  margin-bottom: 12px;
}

.half-content .context-list__item figure header h3 {
  font-size: 1em;
  line-height: 1.2;
}

.no-touch .hover .context-list__item figure:hover figcaption {
  background: white;
  border: 1px solid #e5e6e6;
  left: 0;
  margin-top: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.no-touch .hover .context-list__item figure:hover figcaption header {
  padding-bottom: 12px;
}

.no-touch .hover .context-list__item figure:hover figcaption p {
  display: block;
  font-size: 0.825em;
  height: 100%;
  line-height: 1.5em;
}

.context-list.more-about ul {
  display: table;
  width: 100%;
}

.context-list.more-about ul li {
  background: #e5e5e5;
  display: table;
  margin-bottom: 1px;
  width: 100%;
}

.context-list.more-about ul li a {
  display: table-cell;
  font-size: 0.825em;
  padding: 20px 14px;
  vertical-align: middle;
  color: #141414;
}

.context-list.more-about ul li a:visited {
  color: #141414;
}

.context-list.more-about ul li a:focus {
  color: #141414;
}

.context-list.more-about ul li a:hover {
  color: #141414;
}

.context-list.more-about ul li a:active {
  color: #141414;
}

.context-list.more-about ul li a:hover {
  text-decoration: none;
}

.context-list.more-about ul li a p {
  display: block;
  height: 3.5em;
  line-height: 1.2;
  overflow: hidden;
}

.context-text>header {
  line-height: 1.3;
}

.context-text .bl {
  border-left: 10px solid #5599ce;
  font-weight: 400 !important;
  padding-left: 20px;
}

.context-text p {
  font-size: 0.9em;
  margin: 10px 0 30px 0;
  text-align: justify;
}

.context-text time {
  display: block;
  color: #939393;
  font-size: 1.125em;
  padding-top: 6px;
}

.duel article {
  overflow: hidden;
}

.duel article a {
  text-decoration: none;
}

.duel article span i.fa:first-child {
  color: #b11f30;
}

.duel article>header {
  padding: 20px 0;
}

.duel article h3 {
  line-height: 1.2em;
}

.duel article .players {
  position: relative;
  display: inline-block;
  width: 100%;
}

.duel article .players span.fa-stack {
  left: 50%;
  margin-left: -20px;
  margin-top: 15%;
  position: absolute;
  z-index: 10;
}

@media (min-width: 768px) {
  .duel article .players span.fa-stack {
    margin-top: 12.5%;
  }
}

.duel article .players span.fa-stack>.fa-circle-thin {
  color: white;
}

.duel article .players span.fa-stack>.fa-empty {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.duel article .players .player__img {
  position: relative;
}

.duel article .players .player__img .player__result {
  border-top: 1px solid #dadada;
  bottom: 28px;
  height: 1px;
  left: 7%;
  position: absolute;
  width: 85%;
}

.duel article .players .player__img .ir-108 {
  position: relative;
  height: 0;
  padding-top: 80%;
  width: 100%;
}

.duel article .players .player__img .ir-108>* {
  display: block;
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  margin: 0;
  padding: 0;
}

.duel article .players .player__img .player__winner:before {
  -moz-box-shadow: inset 0px 0px 0px 5px #b11f30;
  -webkit-box-shadow: inset 0px 0px 0px 5px #b11f30;
  box-shadow: inset 0px 0px 0px 5px #b11f30;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 6;
}

.duel article figure {
  width: 49.800797%;
  clear: right;
  float: left;
  margin-left: 0;
  margin-right: 0.398406%;
}

.duel article figure:nth-child(2) {
  width: 49.800797%;
  clear: right;
  float: right;
  margin-right: 0;
}

.duel article figure figcaption {
  color: black;
}

.episodes {
  background: #E6E6E6;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px 0;
}

.episodes header {
  line-height: 1.250em;
  overflow: hidden;
  padding-bottom: 10px;
}

.episodes header a {
  font-size: 0.5em;
  float: right;
}

.episodes .series__wrapper {
  position: relative;
}

.episodes figure {
  position: relative;
}

.episodes figure figcaption header {
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  color: white;
  padding: 20px;
  position: absolute;
  width: 100%;
}

.episodes figure figcaption header h3 {
  font-weight: 300;
  line-height: 1.4;
}

.episodes figure figcaption p {
  display: none;
}

.episodes article {
  width: 100%;
  clear: right;
  float: right;
  padding-left: 0;
  padding-right: 0;
  clear: none;
}

@media (min-width: 568px) {
  .episodes article {
    width: 33.333333%;
    clear: right;
    float: left;
    padding-left: 0;
    padding-right: 0;
  }

  .episodes article>a {
    margin: 0 2px;
    overflow: hidden;
    position: relative;
  }
}

@media (min-width: 568px) {
  .episodes article figure .series__wrapper {
    width: 50%;
    float: left;
    margin-right: -100%;
    clear: none;
    padding-left: 5px;
    padding-right: 5px;
  }

  .episodes article figure>figcaption {
    width: 50%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
    padding-left: 5px;
    padding-right: 5px;
  }

  .episodes article figure>figcaption header {
    background: none;
    color: #141414;
    line-height: 1em;
    padding: 0;
    position: static;
  }

  .episodes article figure>figcaption header h3 {
    padding: 0 0 10px 0;
    font-weight: 400 !important;
  }

  .episodes article figure>figcaption p {
    display: block;
    color: #141414;
    font-weight: 300;
    line-height: 1.5em;
  }
}

.episodes article figure .series__wrapper {
  position: relative;
}

@media (min-width: 768px) {
  .episodes article a {
    display: block;
    height: 100%;
    padding: 0;
  }

  .episodes article figure {
    height: 100%;
    width: 100%;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .episodes article figure>.series__wrapper {
    width: 100%;
    clear: right;
    float: right;
    padding-left: 0;
    padding-right: 0;
    float: none;
  }

  .episodes article figure>figcaption {
    width: 100%;
    clear: right;
    float: right;
    padding-left: 0;
    padding-right: 0;
    float: none;
  }

  .episodes article figure figcaption {
    bottom: 0;
    color: white;
    position: absolute;
    width: 100%;
    z-index: 999;
  }

  .episodes article figure figcaption header {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
  }

  .episodes article figure figcaption header h3 {
    color: white;
    font-size: 0.5em;
    padding: 10px 5px 5px 5px;
  }

  .episodes article figure figcaption p {
    display: none;
  }

  .no-touch .episodes article figure:hover figcaption {
    background: #fff;
    bottom: auto;
    color: black;
    height: 100%;
    top: 0;
  }

  .no-touch .episodes article figure:hover figcaption header {
    background: none;
  }

  .no-touch .episodes article figure:hover figcaption header h3 {
    color: black;
    font-size: 0.525em;
  }

  .no-touch .episodes article figure:hover figcaption p {
    display: block;
    font-size: 0.8em;
    padding: 0 15px;
  }

  .episodes .pagination-wrapper {
    position: relative;
  }
}

.episodes-medium {
  overflow: hidden;
}

.episodes-medium header {
  line-height: 1.250em;
  overflow: hidden;
  padding-bottom: 10px;
}

.episodes-medium header a {
  font-size: 0.5em;
  float: right;
}

.episodes-medium article a {
  color: #141414;
}

.episodes-medium article a:visited {
  color: #141414;
}

.episodes-medium article a:focus {
  color: #141414;
}

.episodes-medium article a:hover {
  color: #141414;
}

.episodes-medium article a:active {
  color: #141414;
}

.episodes-medium article a:hover {
  text-decoration: none;
}

.episodes-medium article .series__wrapper {
  position: relative;
}

.episodes-medium article figcaption {
  background: #e4e5e5;
  padding: 5px 15px 14px 15px;
}

.episodes-medium article figcaption h3 {
  font-size: 0.525em;
  font-weight: 400;
}

.episodes-medium article figcaption p {
  display: none;
}

@media (min-width: 768px) {
  .episodes-medium article {
    width: 50%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
    padding: 0 8px;
  }

  .episodes-medium article figcaption header {
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }

  .episodes-medium .pagination-wrapper {
    position: relative;
    margin: 5px 0 12px 0;
  }
}

.episodes-small {
  overflow: hidden;
}

.episodes-small header {
  line-height: 1.250em;
  overflow: hidden;
  padding-bottom: 10px;
}

.episodes-small article a {
  color: #141414;
}

.episodes-small article a:visited {
  color: #141414;
}

.episodes-small article a:focus {
  color: #141414;
}

.episodes-small article a:hover {
  color: #141414;
}

.episodes-small article a:active {
  color: #141414;
}

.episodes-small article a:hover {
  text-decoration: none;
}

.episodes-small article figure {
  margin-bottom: 20px;
  overflow: hidden;
  padding-bottom: 4em;
  position: relative;
}

.episodes-small article .wrapper {
  position: relative;
}

.episodes-small article figcaption {
  background: #e4e5e5;
  height: 100%;
  margin-top: -4em;
  padding: 5px 15px 25px 15px;
  position: absolute;
  top: 100%;
  width: 100%;
}

.episodes-small article figcaption h3 {
  font-size: 0.525em;
  font-weight: 400 !important;
  line-height: 1.5;
}

.episodes-small article figcaption p {
  display: none;
}

@media (min-width: 768px) {
  .episodes-small {
    position: relative;
  }

  .episodes-small .pagination-wrapper {
    left: auto;
    margin-top: 8px;
    position: absolute;
    right: 10px;
    top: 0;
  }

  .episodes-small .pagination-wrapper .episodes-small__pagination {
    display: block;
    position: static;
  }
}

.fotostory-section a:hover {
  text-decoration: none;
}

@media (min-width: 1024px) {
  .fotostory-section {
    position: relative;
  }

  .fotostory-section .pagination-wrapper {
    left: auto;
    margin-top: 8px;
    position: absolute;
    right: 10px;
    top: 0;
  }

  .fotostory-section .pagination-wrapper .fotostory__pagination {
    display: block;
    position: static;
  }
}

.fotostory-section figcaption {
  background: #333;
}

.fotostory-section figcaption header {
  color: white;
  font-size: 0.9em;
  padding: 15px 12px;
}

@media (min-width: 1024px) {
  .fotostory-section figcaption header {
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
}

.gallery-slider {
  -webkit-overflow-scrolling: none;
  -webkit-backface-visibility: visible;
  height: 100%;
  margin: 10% auto;
  position: relative;
}

.context-text .gallery-slider p {
  text-align: center;
}

.gallery-slider .series__wrapper .ir-169>img {
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  width: auto !important;
}

.gallery-slider.selected {
  display: block !important;
}

.no-touch .gallery-slider {
  max-height: 80%;
  max-width: 680px;
}

@media (min-width: 1024px) {
  .no-touch .gallery-slider {
    max-width: 800px;
  }
}

.no-touch .gallery-slider .swiper-container {
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.no-touch .gallery-slider figure {
  position: relative;
  text-align: center;
}

@media (min-width: 768px) and (orientation: landscape) {
  .no-touch .gallery-slider .series__wrapper img {
    max-height: 480px;
  }
}

@media (min-width: 1198px) and (orientation: landscape) {
  .no-touch .gallery-slider .series__wrapper img {
    max-height: 568px;
  }
}

@media (min-width: 1400px) and (orientation: landscape) {
  .no-touch .gallery-slider .series__wrapper img {
    max-height: 768px;
  }
}

@media (orientation: landscape) {
  .touch .gallery-slider {
    margin-bottom: 0;
    margin-top: 0;
  }
}

.touch .gallery-slider .series__wrapper {
  text-align: center;
}

.touch .gallery-slider .series__wrapper img {
  max-width: 100%;
}

@media (min-width: 320px) and (max-width: 568px) and (orientation: portrait) {
  .touch .gallery-slider .series__wrapper img {
    max-height: 280px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .touch .gallery-slider .series__wrapper img {
    max-height: 600px;
  }
}

@media (min-width: 768px) {
  .gallery-slider {
    padding: 40px;
  }
}

.touch .gallery-slider .slider-nav {
  background: rgba(0, 0, 0, 0.45);
  bottom: 0;
  font-size: 0.4em;
  overflow: hidden;
  padding: 4px 0 2px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.touch .gallery-slider .slider-nav li {
  width: 33.333333%;
  clear: right;
  float: left;
  padding-left: 0.166667;
  padding-right: 0.166667;
  height: 30px;
  position: relative;
  text-align: center;
}

.no-touch .gallery-slider .gallery-wide__slider .swiper-container {
  height: 100%;
  max-width: 680px;
}

.no-touch .gallery-slider .gallery-wide__slider .swiper-container .swiper-slide {
  height: 100%;
}

.touch .gallery-slider .gallery-wide__slider {
  margin-top: -50%;
  top: 50%;
}

@media (orientation: landscape) {
  .touch .gallery-slider .gallery-wide__slider {
    margin-top: 0;
    top: 0;
  }
}

.no-touch .gallery-slider a {
  z-index: 1000;
}

.no-touch .gallery-slider a:hover {
  cursor: pointer;
}

.no-touch .gallery-slider a.arrow-left {
  left: 0;
}

@media (min-width: 768px) {
  .no-touch .gallery-slider a.arrow-left {
    left: -24px;
  }
}

.no-touch .gallery-slider a.arrow-right {
  right: 0;
}

@media (min-width: 768px) {
  .no-touch .gallery-slider a.arrow-right {
    right: -24px;
  }
}

.no-touch .gallery-slider a.arrow-left,
.no-touch .gallery-slider a.arrow-right {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  text-align: center;
  top: 30%;
}

@media (min-width: 768px) {

  .no-touch .gallery-slider a.arrow-left,
  .no-touch .gallery-slider a.arrow-right {
    background: none;
    top: 40%;
  }
}

.no-touch .gallery-slider a.icon-close {
  display: block;
  position: absolute;
  right: 0;
  text-align: center;
  top: -64px;
  width: 64px;
  z-index: 1000;
}

@media (min-width: 768px) {
  .no-touch .gallery-slider a.icon-close {
    right: 8px;
    top: 8px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    opacity: 0.9;
  }
}

.no-touch .gallery-slider a:hover {
  text-decoration: none;
}

.gallery-slider figcaption {
  color: white;
  font-size: 0.9em;
  padding: 10px;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  -webkit-appearance: none;
}

@media (orientation: landscape) {
  .touch .gallery-slider figcaption {
    display: none;
  }
}

html,
body {
  height: 100%;
}

.series-episodes {
  margin-left: 0.6em;
  margin-right: 0.6em;
}

@media (min-width: 568px) {
  .series-episodes {
    margin: 0;
  }
}

.series-episodes>div,
.series-episodes>section {
  margin: 20px 0;
}

.last__episode {
  border-top: 1px solid #48a5db;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

.last__episode a {
  color: #141414;
}

.last__episode a:visited {
  color: #141414;
}

.last__episode a:focus {
  color: #141414;
}

.last__episode a:hover {
  color: #141414;
}

.last__episode a:active {
  color: #141414;
}

.last__episode figure {
  background: #eee;
  display: table;
  height: 100%;
  width: 100%;
}

.last__episode figure figcaption {
  display: table;
  height: 100%;
  padding: 20px;
  vertical-align: middle;
}

.last__episode figure figcaption header {
  font-size: 0.9em;
}

.last__episode figure figcaption p {
  font-size: 1em;
  font-weight: 300;
}

@media (min-width: 568px) {
  .last__episode figure figcaption {
    display: block;
    padding: 0 30px 0 0;
  }
}

.last__episode figure .wrapper {
  width: 50%;
  clear: right;
  float: left;
  margin-left: 0;
  margin-right: 0%;
  position: relative;
}

.last__episode figure figcaption {
  width: 50%;
  clear: right;
  float: right;
  margin-right: 0;
}

.last__episode figure figcaption header {
  display: table-cell;
  vertical-align: middle;
}

.last__episode figure figcaption p {
  display: none;
}

@media (min-width: 568px) {
  .last__episode figure {
    background: none;
  }

  .last__episode figure .wrapper {
    width: 57.446809%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 2.12766%;
  }

  .last__episode figure figcaption {
    width: 40.425532%;
    clear: right;
    float: right;
    margin-right: 0;
  }

  .last__episode figure figcaption header {
    font-size: 1.6em;
    padding-bottom: 20px;
  }

  .last__episode figure figcaption p {
    display: block;
  }
}

@media (min-width: 1024px) {
  .last__episode figure .wrapper {
    max-height: 268px;
    overflow: hidden;
  }
}

.last__episode--movie-description {
  margin-top: 10px;
}

.last__episode--wideo header {
  padding: 20px 0 20px 0;
}

.last__episode--description {
  height: 100%;
}

.last__episode--description article {
  border-left: 10px solid #5599ce;
  padding-left: 20px;
}

.news__last article {
  background: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
}

.news__last a {
  color: #141414;
}

.news__last a:visited {
  color: #141414;
}

.news__last a:focus {
  color: #141414;
}

.news__last a:hover {
  color: #141414;
}

.news__last a:active {
  color: #141414;
}

.news__last figure {
  display: table;
  width: 100%;
}

.news__last figure .news__last-wrapper {
  display: table-cell;
  width: 30%;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait),
(min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .news__last figure .news__last-wrapper {
    width: 28.25%;
  }
}

.news__last figure figcaption {
  display: table-cell;
  padding: 15px;
  vertical-align: middle;
  width: 70%;
}

.news__last figure header {
  position: relative;
  height: 100%;
}

.news__last figure header h3 {
  font-size: 0.450em;
  line-height: 1.250em;
}

.news__last figure .news__summary {
  display: none;
}

.no-touch .news__last figure:hover {
  position: relative;
}

.no-touch .news__last figure:hover figcaption {
  background: white;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.no-touch .news__last figure:hover figcaption header {
  display: none;
}

.no-touch .news__last figure:hover .news__summary {
  display: block;
  font-size: 0.8em;
  height: 5.5em;
  left: 0;
  line-height: 1.5em;
  overflow: hidden;
  padding: 12px;
  position: absolute;
  top: 0;
  width: 100%;
}

.now-playing-epg {
  position: relative;
  margin: 20px 0 0 0;
}

.now-playing-epg>header a {
  color: #8d8d8d;
  font-size: 0.5em;
}

.now-playing-epg .preloader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 100;
  text-align: center;
  line-height: 255px;
  color: #666;
  letter-spacing: 1px;
}

.now-playing-epg .broadcast>a {
  border: 1px solid #000;
  display: table-cell;
  height: 165px;
  position: relative;
  width: 6.25%;
  clear: right;
  float: left;
  margin-left: 0;
  margin-right: 0%;
}

@media (min-width: 768px) {
  .now-playing-epg .broadcast>a {
    width: 3.125%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
}

.now-playing-epg .broadcast>a>i {
  color: #000;
  font-size: 2em;
  margin-top: -16px;
  position: absolute;
  top: 50%;
}

.now-playing-epg .broadcast>a.arrow-left {
  border-right: none;
}

.now-playing-epg .broadcast>a.arrow-left>i {
  left: 50%;
  margin-left: -8px;
}

.now-playing-epg .broadcast>a.arrow-right {
  border-left: 1px solid #cdcdcd;
}

.now-playing-epg .broadcast>a.arrow-right>i {
  right: 50%;
  margin-right: -8px;
}

.now-playing-epg .broadcast>.swiper-container {
  width: 87.5%;
  clear: right;
  float: left;
  margin-left: 0;
  margin-right: 0%;
  height: 180px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .now-playing-epg .broadcast>.swiper-container {
    width: 93.75%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
}

.now-playing-epg .broadcast>.swiper-container>ul>li {
  border-left: 1px solid #cdcdcd;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  display: table-cell;
  height: 140px;
  min-height: 165px;
  padding: 12px 15px;
  position: relative;
  width: 20%;
  clear: right;
  float: left;
  margin-left: 0;
  margin-right: 0%;
}

.now-playing-epg .broadcast>.swiper-container>ul>li.now:after {
  content: "";
  background: #ccc;
  height: 5px;
  width: 100%;
  position: absolute;
  margin-left: -15px;
  bottom: -15px;
}

.now-playing-epg .broadcast>.swiper-container>ul>li:first-child {
  border-left: none;
}

.now-playing-epg article .info {
  overflow: hidden;
}

.now-playing-epg article .info>p {
  float: left;
  font-size: 0.725em;
  line-height: 1.4;
}

.now-playing-epg li article>p {
  clear: both;
  color: #000;
  font-size: 0.850em;
  line-height: 1.4em;
}

.now-playing-epg li article>p.title {
  height: 4.4em;
  overflow: hidden;
}

.now-playing-epg li article>p.category {
  color: #818181;
  font-size: 0.750em;
}

.now-playing-epg ul.icons {
  margin: 4px 0 0 10px;
  float: right;
  height: 30px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .now-playing-epg ul.icons {
    max-width: 115px;
  }
}

.now-playing-epg ul.icons li {
  float: left;
  margin-bottom: 2px;
  padding-left: 4px;
}

.now-playing-epg ul.broadcast {
  clear: both;
  height: 20px;
  margin: 10px 0 6px -15px;
}

.now-playing-epg ul.broadcast li {
  color: #fff;
  display: block;
  float: left;
  font-size: 9px;
  line-height: 12px;
  height: 12px;
  margin-right: 0;
  padding: 0 10px;
  position: relative;
  text-transform: uppercase;
  min-width: 40px;
}

.now-playing-epg ul.broadcast li:after {
  border: solid 6px transparent;
  border-right: none;
  content: "";
  display: block;
  height: 0;
  margin-top: -12px;
  margin-right: -6px;
  width: 0;
  position: absolute;
  right: 0px;
  z-index: 10;
}

.now-playing-epg ul.broadcast li.continues {
  background: #db3b64;
}

.now-playing-epg ul.broadcast li.continues:after {
  border-left-color: #db3b64;
}

.now-playing-epg ul.broadcast li.live {
  background: #5c73a5;
}

.now-playing-epg ul.broadcast li.live:after {
  border-left-color: #5c73a5;
}

.only-with-us a {
  color: #141414;
}

.only-with-us a:visited {
  color: #141414;
}

.only-with-us a:focus {
  color: #141414;
}

.only-with-us a:hover {
  color: #141414;
}

.only-with-us a:active {
  color: #141414;
}

.only-with-us article {
  border-bottom: 1px solid #dfdfdf;
  clear: both;
  display: table;
  width: 100%;
}

.only-with-us figure {
  background-color: #eee;
  display: table;
  width: 100%;
}

.only-with-us figure .only-with-us__last-wrapper {
  display: table-cell;
  width: 47%;
  position: relative;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .only-with-us figure .only-with-us__last-wrapper {
    width: 40%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .only-with-us figure .only-with-us__last-wrapper {
    width: 48%;
  }
}

.only-with-us figure figcaption {
  display: table-cell;
  vertical-align: middle;
  width: 53%;
}

.only-with-us figure header {
  position: relative;
  height: 100%;
}

.only-with-us figure header h3 {
  display: table-cell;
  font-size: 0.450em;
  padding: 0 10px;
  vertical-align: middle;
}

.only-with-us figure .only-with-us__summary {
  display: none;
}

:hover figure .only-with-us figure .only-with-us__summary {
  display: block;
}

.send__file a {
  color: #141414;
}

.send__file a:visited {
  color: #141414;
}

.send__file a:focus {
  color: #141414;
}

.send__file a:hover {
  color: #141414;
}

.send__file a:active {
  color: #141414;
}

.send__file legend {
  display: inline-block;
  overflow: hidden;
  padding: 10px 0;
  width: 100%;
  vertical-align: middle;
}

.send__file legend span {
  display: inline-block;
}

.send__file legend span.fa-stack {
  -moz-border-radius-topleft: 100%;
  -webkit-border-top-left-radius: 100%;
  border-top-left-radius: 100%;
  -moz-border-radius-topright: 100%;
  -webkit-border-top-right-radius: 100%;
  border-top-right-radius: 100%;
  -moz-border-radius-bottomleft: 100%;
  -webkit-border-bottom-left-radius: 100%;
  border-bottom-left-radius: 100%;
  -moz-border-radius-bottomright: 100%;
  -webkit-border-bottom-right-radius: 100%;
  border-bottom-right-radius: 100%;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #48a5db;
  border-bottom-right-radius: 0;
  float: right;
  margin-right: 2px;
}

.send__file legend i {
  color: white;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.send__file p {
  padding: 50px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .send__file p {
    padding: 25px 0;
  }
}

.send__file input[type="file"] {
  position: absolute;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.send__file input[type="file"]:checked+label:before {
  background: gray;
}

.send__file input[type="file"]+label {
  background: #48a5db;
  color: white;
  display: inline-block;
  font-size: 0.825em;
  height: 3.1em;
  line-height: 1.5em;
  overflow: hidden;
  padding: 12px 20px 0 85px;
  position: relative;
  vertical-align: middle;
  width: 100%;
}

.send__file input[type="file"]+label:before {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background: #fff;
  -moz-box-shadow: inset 0px 0px 0px 1px white;
  -webkit-box-shadow: inset 0px 0px 0px 1px white;
  box-shadow: inset 0px 0px 0px 1px white;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YwZjBmMCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZjBmMGYwIi8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNkMWQxZDEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkMWQxZDEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(50%, #f0f0f0), color-stop(50%, #d1d1d1), color-stop(100%, #d1d1d1));
  background-image: -moz-linear-gradient(#f0f0f0, #f0f0f0 50%, #d1d1d1 50%, #d1d1d1);
  background-image: -webkit-linear-gradient(#f0f0f0, #f0f0f0 50%, #d1d1d1 50%, #d1d1d1);
  background-image: linear-gradient(#f0f0f0, #f0f0f0 50%, #d1d1d1 50%, #d1d1d1);
  border: 1px solid gray;
  color: black;
  content: "Wybierz plik";
  display: block;
  font-size: 11px;
  height: 16px;
  margin-top: 10px;
  left: 6px;
  line-height: 1.6em;
  padding: 1px 6px 1px 6px;
  position: absolute;
  top: 0;
  white-space: nowrap;
  width: 60px;
}

.send__file footer {
  border-top: 1px solid #eee;
  overflow: hidden;
  padding-top: 20px;
}

.send__file footer a {
  float: right;
}

.send__file footer a span {
  margin: 0 6px;
}

.series-episodes>div {
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
}

.series-episodes>section {
  width: 100%;
  clear: right;
  float: right;
  margin-right: 0;
}

@media (min-width: 1024px) {
  .series-episodes>div {
    width: 65.957447%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 2.12766%;
  }

  .series-episodes>section {
    width: 31.914894%;
    clear: right;
    float: right;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .series-episodes .last-episode {
    max-height: 360px;
  }
}

.header__submenu {
  border-top: 1px solid #ccc;
  clear: both;
  display: table;
  min-height: 70px;
  padding-top: 8px;
  position: relative;
  text-align: right;
  width: 100%;
}

@media (min-width: 768px) {
  .header__submenu.header__submenu--aerial {
    display: table;
    margin-bottom: 6px;
    vertical-align: middle;
  }
}

@media (min-width: 768px) {
  .header__submenu.header__submenu--with-epg {
    min-height: 105px;
  }
}

.header__submenu.header__submenu--developed {
  margin-bottom: -60px;
}

@media (min-width: 768px) {
  .header__submenu.header__submenu--developed {
    margin-bottom: 0;
  }
}

.header__submenu-colapse-btn {
  color: #141414;
  bottom: 3px;
  cursor: pointer;
  display: inline-block;
  font-size: 1.5em;
  line-height: .25em;
  margin: 0 5% 3% 0;
}

.header__submenu-colapse-btn:visited {
  color: #141414;
}

.header__submenu-colapse-btn:focus {
  color: #141414;
}

.header__submenu-colapse-btn:hover {
  color: #1e6bb3;
}

.header__submenu-colapse-btn:active {
  color: #141414;
}

.touch .header__submenu-colapse-btn {
  font-size: 1.2em;
}

@media (min-width: 768px) {
  .header__submenu-colapse-btn {
    display: none;
  }
}

@media (min-width: 768px) {
  .header__submenu-nav {
    bottom: -2px;
    float: right;
    min-height: 42px;
    margin-right: 20px;
    padding-top: 0;
    position: absolute;
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 768px) {
  .header__submenu-nav {
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  .header__submenu-nav {
    clear: right;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .header__submenu--aerial .header__submenu-nav {
    display: table-cell;
    float: none;
    height: auto;
    margin-right: 20px;
    padding-top: 0;
    vertical-align: middle;
  }
}

@media (min-width: 1024px) {
  .header__submenu--aerial .header__submenu-nav {
    clear: none;
    margin-top: 0;
  }
}

.header__submenu-nav>ul>li {
  display: block;
}

.header__submenu-nav>ul>li.with-submenu>a {
  display: none;
}

.header__submenu-nav>ul>li.with-submenu>span.with-submenu {
  display: block;
}

.header__submenu-nav>ul>li.select>a,
.header__submenu-nav>ul>li.select>span {
  color: #1e6bb3;
}

.header__submenu-nav>ul>li>ul>li.select>a {
  color: #1e6bb3;
}

@media (min-width: 768px) {
  .header__submenu-nav>ul>li {
    border: none;
    display: inline-block;
  }

  .header__submenu-nav>ul>li>a {
    margin: 0 12px;
  }

  .header__submenu-nav>ul>li.with-submenu>a {
    display: inline-block;
  }

  .header__submenu-nav>ul>li.with-submenu>span {
    display: none;
  }

  .header__submenu-nav>ul>li.select>a {
    border-bottom: 4px solid #0091ca;
  }

  .header__submenu-nav>ul>li>ul>li.select>a {
    color: #fff;
  }

  .header__submenu-nav>ul>li>ul>li:last-child {
    display: none;
  }

  .header__submenu-nav>ul>li>a {
    white-space: nowrap;
  }

  .header__submenu-nav>ul>li>ul {
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    left: 50%;
    margin-top: 20px;
    position: absolute;
    width: 220px;
    z-index: 1000;
  }

  .header__submenu-nav>ul>li>ul>li>a {
    font-size: 1rem;
    margin: 0;
    padding: 0.5em 4.54545%;
  }
}

.header__submenu-nav.in {
  overflow: hidden;
  padding-bottom: 30px;
  position: relative;
  top: -30px;
  width: 100%;
}

@media (min-width: 768px) {
  .header__submenu-nav.in {
    border: none;
    padding-bottom: 0;
    overflow: visible;
    top: 0;
    width: auto;
  }
}

.header__submenu-nav.in>ul {
  background-color: #f9f9f9;
  border: solid 0.5rem rgba(0, 0, 0, 0.15);
  border-left: none;
  border-right: none;
  display: block;
}

@media (min-width: 768px) {
  .header__submenu-nav.in>ul {
    background: none;
    border: none;
  }
}

.header__submenu-nav.in>ul:before {
  border: solid 1rem transparent;
  border-bottom-color: rgba(0, 0, 0, 0.15);
  border-top: none;
  bottom: 100%;
  content: "";
  float: right;
  display: block;
  height: 0;
  margin-top: -24px;
  margin-right: 6%;
  width: 0;
}

@media (min-width: 768px) {
  .header__submenu-nav.in>ul:before {
    display: none;
  }
}

.header__submenu-nav.in>ul li.with-submenu>a:after,
.header__submenu-nav.in>ul li.with-submenu>span:after {
  content: "\f0d7";
  font-family: FontAwesome;
  color: #000;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  border-radius: 1em;
  -moz-border-radius-topleft: 1em;
  -webkit-border-top-left-radius: 1em;
  border-top-left-radius: 1em;
  -moz-border-radius-topright: 1em;
  -webkit-border-top-right-radius: 1em;
  border-top-right-radius: 1em;
  -moz-border-radius-bottomleft: 1em;
  -webkit-border-bottom-left-radius: 1em;
  border-bottom-left-radius: 1em;
  -moz-border-radius-bottomright: 1em;
  -webkit-border-bottom-right-radius: 1em;
  border-bottom-right-radius: 1em;
  font-size: 1em;
  display: block;
  padding: 12px 2px 10px 1px;
  line-height: 1px;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.25);
  float: right;
  height: 1px;
  width: 20px;
  text-align: center;
}

@media (min-width: 768px) {

  .header__submenu-nav.in>ul li.with-submenu>a:after,
  .header__submenu-nav.in>ul li.with-submenu>span:after {
    display: none;
  }
}

.header__submenu-nav.in>ul li.with-submenu>a:hover,
.header__submenu-nav.in>ul li.with-submenu>span:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  .header__submenu-nav.in>ul li>ul {
    clear: bold;
    left: -50%;
    margin-top: 0;
    margin-left: -0.5rem;
    top: 100%;
    width: 300px;
  }
}

.header__submenu-nav.in>ul li>ul>li {
  border: none;
  clear: none;
  width: 100%;
}

@media (min-width: 480px) {
  .header__submenu-nav.in>ul li>ul>li {
    width: 50%;
    padding: 0;
    float: left;
  }
}

@media (min-width: 568px) {
  .header__submenu-nav.in>ul li>ul>li {
    padding: 0;
    float: left;
    width: 33.333333%;
  }
}

@media (min-width: 768px) {
  .header__submenu-nav.in>ul li>ul>li {
    width: 50%;
    padding: 0;
    float: left;
  }

  .header__submenu-nav.in>ul li>ul>li:last-child {
    width: 100%;
  }
}

.header__submenu-nav.in>ul li>ul>li a,
.header__submenu-nav.in>ul li>ul>li span {
  border-top: solid 1px #fff;
  padding: 0.5em 4.54545%;
}

.header__submenu-nav.in>ul li>ul>li a.hover,
.header__submenu-nav.in>ul li>ul>li span.hover {
  background-color: #1e6bb3;
  color: #fff;
}

@media (min-width: 480px) {

  .header__submenu-nav.in>ul li>ul>li a,
  .header__submenu-nav.in>ul li>ul>li span {
    padding: 0.5em 9.0909%;
  }
}

@media (min-width: 568px) {

  .header__submenu-nav.in>ul li>ul>li a,
  .header__submenu-nav.in>ul li>ul>li span {
    padding: 0.5em 13.63635%;
  }
}

@media (min-width: 768px) {

  .header__submenu-nav.in>ul li>ul>li a,
  .header__submenu-nav.in>ul li>ul>li span {
    padding: 0.5em 0.5em;
    text-align: left;
  }
}

.header__submenu-nav.colapse>ul {
  display: none;
}

@media (min-width: 768px) {
  .header__submenu-nav.colapse>ul {
    background-color: transparent;
    border: none;
    display: inline-block;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .header__submenu-nav.colapse>ul {
    max-width: 700px;
  }
}

@media (min-width: 768px) and (min-width: 1024px) {
  .header__submenu-nav.colapse>ul {
    max-width: 800px;
  }
}

@media (min-width: 768px) and (min-width: 1198px) {
  .header__submenu-nav.colapse>ul {
    max-width: 900px;
  }
}

.header__submenu-nav li {
  clear: both;
  display: block;
  border-top: solid 1px #e6e6e6;
  text-align: left;
}

.header__submenu-nav li a,
.header__submenu-nav li span {
  color: #141414;
  display: block;
  font-size: 0.7em;
  padding: 0.5em 4.54545%;
  text-decoration: none;
}

.header__submenu-nav li a:visited,
.header__submenu-nav li span:visited {
  color: #141414;
}

.header__submenu-nav li a:focus,
.header__submenu-nav li span:focus {
  color: #141414;
}

.header__submenu-nav li a:hover,
.header__submenu-nav li span:hover {
  color: #1e6bb3;
}

.header__submenu-nav li a:active,
.header__submenu-nav li span:active {
  color: #141414;
}

@media (min-width: 768px) {
  .header__submenu-nav li li {
    border: none;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 100%;
  }

  .header__submenu-nav li li a {
    border-bottom: 4px solid transparent;
    line-height: 1.3em;
    margin: 0 12px;
    padding: 0;
    position: relative;
  }

  .header__submenu-nav li li>ul>li>a {
    font-size: 1em;
  }
}

.header__submenu-episode-logo {
  display: inline-block;
  float: left;
  margin: 0 20px 6px 10px;
  max-width: 120px;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .header__submenu-episode-logo {
    display: table-cell;
  }
}

@media (min-width: 1198px) {
  .header__submenu-episode-logo {
    max-width: 250px;
  }
}

.header__submenu-episode-logo img {
  width: 100%;
}

.aerial .header__submenu-episode-logo {
  max-width: 220px;
}

.header__submenu-episode-logo-text {
  color: #747373;
  margin-top: 12px;
  font-size: 25px;
  font-family: inherit;
  display: inline-block;
  font-weight: 400 !important;
  letter-spacing: 3px;
}

.header__submenu-plan {
  background-color: white;
  display: inline-block;
  float: left;
  margin: 10px;
  text-align: left;
  width: 180px;
  z-index: 9999;
  -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.15);
}

@media (min-width: 480px) {
  .header__submenu-plan {
    margin: 3px 3px 0 0;
  }
}

@media (min-width: 768px) {
  .header__submenu-plan {
    float: right;
    margin-bottom: 56px;
  }
}

.header__submenu-plan span,
.header__submenu-plan a {
  display: inline-block;
  vertical-align: middle;
}

.header__submenu-plan span.plan__logo,
.header__submenu-plan a.plan__logo {
  width: 92px;
}

.header__submenu-plan span.plan__logo i,
.header__submenu-plan a.plan__logo i {
  margin: 0 auto;
}

.header__submenu-plan .plan {
  background-color: #fff;
}

.header__submenu-plan .plan__caret-top {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
  background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
  padding: 3px 8px;
  width: 32px;
}

.header__submenu-plan .plan__caret-top i {
  color: black;
}

.header__submenu-plan .plan__info {
  color: black;
  font-size: 0.4em;
  line-height: 1em;
  text-align: right;
  text-transform: uppercase;
  width: 40px;
}

.header__submenu-plan .plan__telecast {
  background-color: #fff;
  display: none;
  padding: 2px 0;
  position: absolute;
  z-index: 999;
  width: 180px;
  -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.15);
}

.header__submenu-plan .plan__telecast li {
  -moz-border-radius-topleft: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: #eee;
  margin: 4px;
  text-align: left;
}

.header__submenu-plan .plan__telecast li span,
.header__submenu-plan .plan__telecast li a {
  display: inline-block;
  font-size: 12px;
  padding: 5px;
}

.header__submenu-plan .plan__telecast li span.day,
.header__submenu-plan .plan__telecast li a.day {
  -moz-border-radius-topleft: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  background-color: #5c73a5;
  color: white;
  font-size: 12px;
  text-align: center;
  width: 35px;
}

.header__submenu-plan .plan__telecast li span.day.holiday,
.header__submenu-plan .plan__telecast li a.day.holiday {
  background-color: #db3b64;
}

.header__submenu-plan .plan__telecast li span.hours,
.header__submenu-plan .plan__telecast li a.hours {
  width: 120px;
}

.header__submenu-plan .plan__telecast li.more a {
  display: block;
}

.header__submenu-plan .plan__telecast li.active span {
  opacity: 1;
}

.header__submenu-plan .plan__telecast li.active span.hours {
  background-color: #eee;
}

.header__submenu-plan .plan__telecast li:last-child {
  text-align: center;
}

.header__submenu-plan .plan__telecast.in {
  display: block;
}

.plan__telecast-full {
  overflow: hidden;
}

.plan__telecast-full .inner {
  float: left;
  left: 50%;
  max-height: 320px;
  max-width: 710px;
  position: relative;
  top: 10%;
  width: 320px;
}

@media (min-width: 768px) {
  .plan__telecast-full .inner {
    padding: 20px;
    width: auto;
  }
}

.plan__telecast-full .icon-close {
  display: block;
  font-size: 0.4em;
  position: absolute;
  right: 40%;
  text-align: center;
  top: -24px;
  width: 64px;
  z-index: 1000;
}

@media (min-width: 320px) and (max-width: 568px) and (orientation: portrait) {
  .plan__telecast-full .icon-close {
    right: 50%;
  }
}

@media (min-width: 768px) {
  .plan__telecast-full .icon-close {
    right: 45%;
    top: -8px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    opacity: 0.9;
  }
}

.plan__telecast-full table {
  background: #fff;
  border-collapse: collapse;
  margin-left: -50%;
  margin-top: 0;
  padding: 8px;
  width: 100%;
}

@media (min-width: 320px) and (max-width: 568px) and (orientation: portrait) {
  .plan__telecast-full table {
    display: block;
    height: 350px;
    overflow-y: auto;
    width: 90%;
  }

  .plan__telecast-full table th,
  .plan__telecast-full table td {
    border: none;
  }
}

@media (min-width: 320px) and (max-width: 568px) and (orientation: landscape) {
  .plan__telecast-full table {
    border: none;
    display: block;
    height: 250px;
    overflow-y: auto;
  }

  .plan__telecast-full table th,
  .plan__telecast-full table td {
    border: none;
  }
}

.plan__telecast-full tr {
  display: table;
  width: 100%;
}

.plan__telecast-full tr td {
  display: table-row;
  margin-left: 12px;
  text-align: left;
}

@media (min-width: 320px) and (max-width: 568px) and (orientation: portrait),
(min-width: 320px) and (max-width: 568px) and (orientation: landscape) {
  .plan__telecast-full tr td {
    height: 20px;
    position: relative;
  }

  .plan__telecast-full tr td:before {
    display: inline-block;
    font-weight: bold;
    margin-left: 10px;
  }

  .plan__telecast-full tr td:after {
    content: "";
    margin-right: 10px;
  }

  .plan__telecast-full tr td:nth-child(2):before {
    content: "Poniedziałek: ";
  }

  .plan__telecast-full tr td:nth-child(3):before {
    content: "Wtorek: ";
  }

  .plan__telecast-full tr td:nth-child(4):before {
    content: "Środa: ";
  }

  .plan__telecast-full tr td:nth-child(5):before {
    content: "Czwartek: ";
  }

  .plan__telecast-full tr td:nth-child(6):before {
    content: "Piątek: ";
  }

  .plan__telecast-full tr td:nth-child(7):before {
    content: "Sobota: ";
  }

  .plan__telecast-full tr td:nth-child(8):before {
    content: "Niedziela: ";
  }
}

.plan__telecast-full tr th {
  display: none;
}

@media (min-width: 768px) {
  .plan__telecast-full tr {
    display: table-row;
  }

  .plan__telecast-full tr td,
  .plan__telecast-full tr th {
    display: table-cell;
    height: auto;
  }
}

.plan__telecast-full th,
.plan__telecast-full td {
  border: 1px solid black;
  text-align: center;
  width: 12.5%;
}

.plan__telecast-full th i,
.plan__telecast-full td i {
  margin: 0 auto;
}

.plan__telecast-full th {
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
}

.plan__telecast-full th.day {
  background-color: #5c73a5;
  color: white;
  font-weight: 400 !important;
  text-align: center;
}

.plan__telecast-full th.day.holiday {
  background-color: #db3b64;
}

.plan__telecast-full td {
  color: #000;
  font-size: 0.4em;
  line-height: 1.2em;
  padding: 20px 8px;
  text-align: center;
  vertical-align: middle;
}

.questionnaire legend {
  padding: 13px 0;
  border-bottom: 1px solid #B6B6B6;
  width: 100%;
}

.questionnaire form {
  background: #f8f8f8;
}

.questionnaire__option {
  border-bottom: 1px solid #B6B6B6;
  display: inline-block;
  padding: 3% 0;
  vertical-align: middle;
  width: 100%;
}

.questionnaire__option__big {
  border-bottom: 1px solid #B6B6B6;
  display: inline-block;
  padding: 3% 0;
  vertical-align: middle;
  width: 70% !important;
  margin: 0 auto;
}

.questionnaire__option__big img {
  max-width: 240px;
}

@media (min-width: 850px) {
  .questionnaire__option {
    padding: 3.6% 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .questionnaire__option {
    padding: 2.8% 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .questionnaire__option {
    padding: 2% 0;
  }
}

@media (min-width: 1140px) {
  .questionnaire__option {
    padding: 2.8% 0;
  }
}

.questionnaire__option input[type="radio"] {
  position: absolute;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.questionnaire__option input[type="radio"]:checked+label:before {
  background: gray;
}

.questionnaire__option input[type="radio"]+label {
  cursor: pointer;
  display: inline-block;
  font-size: 0.825em;
  height: 3.1em;
  line-height: 1.5em;
  overflow: hidden;
  padding: 0 20px 0 55px;
  position: relative;
  vertical-align: middle;
  z-index: 10;
}

.questionnaire__option input[type="radio"]+label:before {
  -moz-box-shadow: inset 0px 0px 0px 2px white, 0px 0px 0px 10px #f0e7e7;
  -webkit-box-shadow: inset 0px 0px 0px 2px white, 0px 0px 0px 10px #f0e7e7;
  box-shadow: inset 0px 0px 0px 2px white, 0px 0px 0px 10px #f0e7e7;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background: white;
  border: 1px solid gray;
  content: "";
  display: block;
  height: 14px;
  margin-top: -6px;
  left: 14px;
  position: absolute;
  top: 50%;
  width: 14px;
}

.show-results .questionnaire__option input[type="radio"]+label:before {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.show-results .questionnaire__option .questionnaire__result {
  height: 3em;
  left: 0;
  margin-top: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.show-results .questionnaire__option .questionnaire__result span {
  border-bottom: 2px solid #48a5db;
  display: block;
  font-weight: 400 !important;
  text-indent: 10px;
  height: 3em;
  line-height: 3em;
}

.questionnaire__submit {
  padding: 10px;
  text-align: center;
}

.questionnaire__info {
  display: block;
  font-weight: bold !important;
  font-size: 13px;
  text-align: center;
  width: 100%;
}

.questionnaire__info_big {
  display: block;
  font-weight: 300 !important;
  font-size: 1.7em;
  text-align: center;
  width: 50%;
  color: #A86464;
}

.survey_list_figcaption {
  display: table;
  height: 120px !important;
  width: 100%;
}

.survey_list_div {
  display: table-cell;
  vertical-align: middle;
}

.survey_list_header {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 10px;
}

.we-recommend {
  background: #E6E6E6;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px 0;
}

.we-recommend header {
  line-height: 1.250em;
  overflow: hidden;
  padding-bottom: 10px;
}

.we-recommend header a {
  font-size: 0.5em;
  float: right;
}

.we-recommend .series__wrapper {
  position: relative;
}

.we-recommend figure {
  position: relative;
}

.we-recommend figure figcaption header {
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  color: white;
  padding: 20px;
  position: absolute;
  width: 100%;
}

.we-recommend figure figcaption header h3 {
  font-weight: 300;
  line-height: 1.4;
}

.we-recommend figure figcaption p {
  display: none;
}

.we-recommend article {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0%;
  clear: none;
}

@media (min-width: 568px) {
  .we-recommend article figure .series__wrapper {
    width: 47.916667%;
    float: left;
    margin-right: -100%;
    margin-left: 1.041667%;
    clear: none;
  }

  .we-recommend article figure>figcaption {
    width: 47.916667%;
    float: right;
    margin-left: 0;
    margin-right: 1.041667%;
    clear: none;
  }

  .we-recommend article figure>figcaption header {
    background: none;
    color: black;
    line-height: 1em;
    padding: 0;
    position: static;
  }

  .we-recommend article figure>figcaption header h3 {
    padding: 0 0 10px 0;
  }

  .we-recommend article figure>figcaption p {
    display: block;
    color: black;
    font-weight: 300;
    line-height: 1.5em;
  }
}

.we-recommend article figure .series__wrapper {
  position: relative;
}

@media (min-width: 768px) {
  .we-recommend article a {
    display: block;
    height: 100%;
  }

  .we-recommend article figure {
    height: 100%;
    width: 100%;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .we-recommend article figure>.series__wrapper {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .we-recommend article figure>figcaption {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  .we-recommend article figure figcaption {
    padding: 10px 10px 0 10px;
  }

  .we-recommend article figure figcaption header {
    color: black;
  }

  .we-recommend article figure figcaption header h3 {
    font-weight: 300 !important;
  }

  .we-recommend article figure figcaption p {
    display: block;
    font-size: 0.9em;
  }

  .we-recommend .pagination-wrapper {
    position: relative;
  }
}

@media (min-width: 1024px) {
  .we-recommend .pagination-wrapper {
    display: none;
  }
}

body>div>footer a,
body>footer a {
  color: #414141;
}

body>div>footer a:visited,
body>footer a:visited {
  color: #414141;
}

body>div>footer a:focus,
body>footer a:focus {
  color: #747474;
}

body>div>footer a:hover,
body>footer a:hover {
  color: #414141;
}

body>div>footer a:active,
body>footer a:active {
  color: #414141;
}

body>div>footer .social-links-list,
body>footer .social-links-list {
  text-align: center;
  padding: 10px 0 10px 0;
}

body>div>footer .social-links-list a,
body>footer .social-links-list a {
  display: inline-block;
}

body>div>footer .channels-list,
body>div>footer .footer-links-sections,
body>div>footer .footer-bottom-menu,
body>footer .channels-list,
body>footer .footer-links-sections,
body>footer .footer-bottom-menu {
  background-color: #f1f1f1;
}

body>div>footer .channels-list>div>a,
body>div>footer .channels-list>div>span,
body>div>footer .footer-links-sections>div>a,
body>div>footer .footer-links-sections>div>span,
body>div>footer .footer-bottom-menu>div>a,
body>div>footer .footer-bottom-menu>div>span,
body>footer .channels-list>div>a,
body>footer .channels-list>div>span,
body>footer .footer-links-sections>div>a,
body>footer .footer-links-sections>div>span,
body>footer .footer-bottom-menu>div>a,
body>footer .footer-bottom-menu>div>span {
  font-size: 0.75em;
  font-weight: 300;
}

body>div>footer .channels-list,
body>footer .channels-list {
  border-top: solid 1px #e5e5e5;
}

body>div>footer .channels-list>div,
body>footer .channels-list>div {
  padding: 10px 0 10px 0;
  text-align: center;
}

body>div>footer .channels-list>div>a,
body>div>footer .channels-list>div>span,
body>footer .channels-list>div>a,
body>footer .channels-list>div>span {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

body>div>footer .channels-list>div>a>i,
body>div>footer .channels-list>div>span>i,
body>footer .channels-list>div>a>i,
body>footer .channels-list>div>span>i {
  display: inline-block;
  margin: 0 4px;
}

body>div>footer .footer-links-sections,
body>footer .footer-links-sections {
  border-top: solid 1px #e5e5e5;
}

body>div>footer .footer-links-sections>nav,
body>footer .footer-links-sections>nav {
  width: 90.909091%;
  float: left;
  margin-right: -100%;
  margin-left: 4.545455%;
  clear: both;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  padding: 10px 0 10px 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

body>div>footer .footer-links-sections>nav:first-child,
body>footer .footer-links-sections>nav:first-child {
  border-top: none;
}

body>div>footer .footer-links-sections>nav a,
body>div>footer .footer-links-sections>nav span,
body>footer .footer-links-sections>nav a,
body>footer .footer-links-sections>nav span {
  display: block;
  font-size: 0.75em;
  font-weight: 300;
}

@media (min-width: 768px) {

  body>div>footer .footer-links-sections>nav a,
  body>div>footer .footer-links-sections>nav span,
  body>footer .footer-links-sections>nav a,
  body>footer .footer-links-sections>nav span {
    margin-left: 5%;
  }
}

@media (min-width: 768px) {

  body>div>footer .footer-links-sections>nav,
  body>footer .footer-links-sections>nav {
    width: 25%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
    text-align: left;
    border-top: none;
    border-right: 1px solid #e5e5e5;
  }
}

@media (min-width: 768px) {

  body>div>footer .footer-links-sections>nav:last-child,
  body>footer .footer-links-sections>nav:last-child {
    border-right: none;
  }
}

body>div>footer .footer-bottom-menu,
body>footer .footer-bottom-menu {
  text-align: center;
  background-color: #8d8d8d;
  padding: 10px 0;
}

body>div>footer .footer-bottom-menu a,
body>div>footer .footer-bottom-menu span,
body>footer .footer-bottom-menu a,
body>footer .footer-bottom-menu span {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  color: white;
  margin: 0 12px;
}

body>div>footer .footer-bottom-menu a:visited,
body>div>footer .footer-bottom-menu span:visited,
body>footer .footer-bottom-menu a:visited,
body>footer .footer-bottom-menu span:visited {
  color: white;
}

body>div>footer .footer-bottom-menu a:focus,
body>div>footer .footer-bottom-menu span:focus,
body>footer .footer-bottom-menu a:focus,
body>footer .footer-bottom-menu span:focus {
  color: white;
}

body>div>footer .footer-bottom-menu a:hover,
body>div>footer .footer-bottom-menu span:hover,
body>footer .footer-bottom-menu a:hover,
body>footer .footer-bottom-menu span:hover {
  color: white;
}

body>div>footer .footer-bottom-menu a:active,
body>div>footer .footer-bottom-menu span:active,
body>footer .footer-bottom-menu a:active,
body>footer .footer-bottom-menu span:active {
  color: white;
}

@media (min-width: 1024px) {

  body>div>footer .footer-bottom-menu a,
  body>div>footer .footer-bottom-menu span,
  body>footer .footer-bottom-menu a,
  body>footer .footer-bottom-menu span {
    float: left;
  }
}

body>div>footer .footer-bottom-menu>div,
body>footer .footer-bottom-menu>div {
  width: 90.909091%;
  float: left;
  margin-right: -100%;
  margin-left: 4.545455%;
  clear: both;
}

body>div>footer .footer-bottom-menu .footer-bottom-menu__copyright,
body>footer .footer-bottom-menu .footer-bottom-menu__copyright {
  color: white;
  display: block;
  padding: 10px 0 5px 0;
  border-top: 1px solid #a6a6a6;
}

@media (min-width: 1024px) {

  body>div>footer .footer-bottom-menu .footer-bottom-menu__copyright,
  body>footer .footer-bottom-menu .footer-bottom-menu__copyright {
    border: none;
    float: right;
    padding: 0;
  }
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #141414;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:visited {
  color: #141414;
}

a:focus {
  color: #141414;
}

a:hover {
  color: #141414;
}

a:active {
  color: #141414;
}

/*# sourceMappingURL=core.css.map */
/* banery */
#baners {
  clear: both;
  margin: 0 auto;
  padding-bottom: 18px;
  width: 96.7742%;
}

#baners>div {
  text-align: center;
  padding-bottom: 12px;
}

#baners p {
  color: #262224;
  font-size: 72%;
  margin: 0 auto;
  padding: 0 6px 16px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

#baners p span {
  background: #fff none repeat scroll 0 0;
  display: inline;
  font-weight: 500;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}

#baners p .line {
  background: #dbdcdd none repeat scroll 0 0;
  height: 3px;
  left: 0;
  margin-top: 8px;
  position: absolute;
  width: 100%;
  z-index: 1;
}

#baners a {
  background-image: url("http://s.tvp.pl/files/tvp.pl/auto/baner.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 236px;
}

#baners #baner_tvp {
  background-position: 65px 0;
  height: 48px;
}

#baners #baner_polskieradio {
  background-position: 49px -49px;
  height: 43px;
}

#baners #baner_pomorskie {
  background-position: 37px -91px;
  height: 102px;
}

#baners #baner_sopot {
  background-position: 58px -186px;
  height: 100px;
}

#baners #baner_gdynia {
  background-position: 43px -293px;
  height: 86px;
}

#baners #baner_gdansk {
  background-position: 68px -378px;
  height: 93px;
}

#baners #baner_lotos {
  background-position: 0 -471px;
  height: 66px;
}

#baners #baner_energa {
  background-position: 38px -536px;
  height: 53px;
}

#baners #baner_strefa-gda {
  background-position: 38px -588px;
  height: 60px;
}

#baners #baner_nina-gov {
  background-position: 56px -647px;
  height: 87px;
}

#baners #baner_ckgdynia {
  background-position: 74px -733px;
  height: 87px;
}

#baners #baner_radiogdansk {
  background-position: 53px -833px;
  height: 73px;
}

#baners #baner_boto-art {
  background-position: 74px -916px;
  height: 80px;
}

#baners #baner_gdansk-tvp {
  background-position: 67px -1002px;
  height: 80px;
}

#baners #baner_wsieci {
  background-position: 58px -1079px;
  height: 75px;
}

@media only screen and (min-width: 1140px) {
  #baners {
    height: 526px;
    overflow: hidden;
  }

  #baners::before {
    content: "";
    background: #dbdcdd;
    width: 3px;
    position: absolute;
    height: 512px;
    margin-left: 10px;
  }

  #baners>div:nth-of-type(1) {
    float: left;
    width: 49%;
  }

  #baners>div:nth-of-type(2) {
    width: 49%;
  }

  #baners>div:nth-of-type(3) {
    width: 49%;
    margin-top: 6px;
  }

  #baners>div:nth-of-type(4) {
    float: right;
    position: relative;
    top: -516px;
    width: 49%;
  }

  #baners>div:nth-of-type(4) a {
    position: relative;
    top: 15px;
  }

  #baners>div:nth-of-type(5) {
    float: right;
    left: 548px;
    position: relative;
    top: -359px;
    width: 49%;
  }

  #baners>div:nth-of-type(5)>p {
    padding-bottom: 40px;
  }

  #baners #baner_nina-gov {
    background-position: 0 -647px;
    float: left;
    margin-left: 18px;
  }

  #baners #baner_ckgdynia {
    float: left;
    left: -102px;
    position: relative;
  }

  #baners #baner_radiogdansk {
    float: left;
    margin-top: 13px;
    position: absolute;
    right: -21px;
  }

  #baners #baner_gdynia {
    margin-top: 26px;
  }

  #last_tree {
    clear: both;
    float: left;
    margin-top: 40px;
  }

  #last_tree>div {
    float: left;
    width: 182px;
  }

  #last_tree>div::after {
    background: #dbdcdd none repeat scroll 0 0;
    bottom: 73px;
    content: "";
    height: 82px;
    margin-left: 87px;
    position: absolute;
    width: 3px;
  }

  #last_tree>div:last-child::after {
    width: 0;
  }

  #baners #baner_boto-art {
    left: -30px;
    margin-top: 15px;
    position: relative;
  }

  #baners #baner_gdansk-tvp {
    left: -23px;
    margin-top: 24px;
    position: relative;
  }

  #baners #baner_wsieci {
    left: -20px;
    margin-top: 27px;
    position: relative;
  }
}

/* baney end */
.belka_promo {
  padding: 25px 0px 0px 0px;
  clear: both;
}

.belka_promo IMG {
  width: 100%;
}

.cookie-accept {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  background-color: rgb(0, 0, 0);
  opacity: 0.88;
  color: rgb(255, 255, 255);
  font-family: arial;
  font-size: 14px;
  text-align: center;
  z-index: 1000;
  background-position: initial initial;
  background-repeat: initial initial;
}

.cookie-accept-inner {
  position: relative;
  height: auto;
  width: 90%;
  padding: 15px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  line-height: 150%;
  text-shadow: none !important;
}

.cookie-accept-inner A {
  margin: 10px auto;
  width: 250px;
  color: #DBAD28;
  font-weight: bold;
  text-decoration: underline;
}

.ue-header {
  margin-left: 108px;
  margin-top: 4px;
}

.ue-header IMG {
  width: 48px;
}

.ue-header-mob {
  display: none;
}

@media screen and (max-width: 1196px) {
  .ue-header {
    margin-left: 60px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .main-colapse-btn {
    left: 5%;
    right: auto
  }

  .ue-header {
    display: none !important
  }

  .ue-header-mob {
    position: absolute;
    top: 15px !important;
    right: 5%;
    display: block;
  }

  .ue-header-mob IMG {
    width: 60px;
  }

  .header-main__logo-container .header-main__logo {
    margin-left: 15%
  }

  .header-main__logo-container I {
    top: -10px !important;
    position: relative;
  }
}

/* TYGODNIK-SECTION */
.tygodnik-section {
	clear: both;
	margin: 0 4.545455% 10px;
}
@media all and (min-width: 768px) {
	.tygodnik-section {
	    margin: 0 3.125% 30px;
	}
}
@media all and (min-width: 1024px) {
	.tygodnik-section {
		margin: 0 1.5625% 50px;
	}
}
.tygodnik-section .header {
	position: relative;
	height: 30px;
}
.tygodnik-section .header:after {
	position: absolute;
	display: block;
	content: ' ';
	bottom: 15px;
	left: 0;
	right: 0;
	height: 1px;
	border-bottom: solid 1px #e9e9e9;
	z-index: 1;
}
.tygodnik-section .header h1 {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	z-index: 2;
	font-size: 1.875em;
	padding-right: 20px;
	background-color: #fff;
}
.tygodnik-section .header h2 {
	position: absolute;
	display: block;
	right: 0;
	top: 6px;
	z-index: 2;
	padding-left: 20px;
	background-color: #fff;
}
.tygodnik-section .header h2 a {
	display: block;
	width: 120px;
}
.tygodnik-section .header h2 img {
	display: block;
	width: 100%;
}
.tygodnik-section .items {
	margin: 0 -5px;
}
.tygodnik-section .items:before,
.tygodnik-section .items:after {
	display: table;
	content: ' ';
}
.tygodnik-section .items:after {
	clear: both;
}
.tygodnik-section .items a {
	display: block;
	position: relative;
	float: left;
	width: calc(25% - 10px);
	margin: 10px 5px;
}
.tygodnik-section .items a:hover {
	text-decoration: none;
}
.tygodnik-section .items a .image {
	display: block;
	position: relative;
	height: 0;
	padding-top: calc(9 / 16 * 100%);
	overflow: hidden;
}
.tygodnik-section .items a .image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
}
.tygodnik-section .items a .title {
	display: block;
	padding-top: 10px;
	font-size: 0.875em;
	line-height: 1.375em;
}
.tygodnik-section .items a:first-child {
	width: calc(50% - 10px);
}
.tygodnik-section .items a:first-child .image {
	padding-top: calc(9 / 21 * 100%);
}
.tygodnik-section .items a:first-child .title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 70px 20px 15px;
	color: #fff;
	background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.9) 60px);
	font-size: 1em;
	line-height: 1.5em;
}
.tygodnik-section .items a:first-child .image img {
	top: calc(9 / 21 * 100% - 9 / 16 * 100%);
}
.tygodnik-section .items a:nth-child(4) {
	clear: both;
}
.tygodnik-section .items a:nth-child(8),
.tygodnik-section .items a:nth-child(9),
.tygodnik-section .items a:nth-child(10),
.tygodnik-section .items a:nth-child(11),
.tygodnik-section .items a:nth-child(12),
.tygodnik-section .items a:nth-child(13),
.tygodnik-section .items a:nth-child(14),
.tygodnik-section .items a:nth-child(15),
.tygodnik-section .items a:nth-child(16) {
	display: none;
}
@media all and (max-width: 480px) {
	.tygodnik-section .header h1 {
		padding-right: 10px;
	}
	.tygodnik-section .header h2 {
		top: 10px;
		padding-left: 10px;
	}
	.tygodnik-section .header h2 a {
		width: 60px;
	}
}
@media all and (max-width: 768px) {
	.tygodnik-section .header h1 {
		padding-right: 15px;
	}
	.tygodnik-section .header h2 {
		top: 8px;
		padding-left: 15px;
	}
	.tygodnik-section .header h2 a {
		width: 90px;
	}
	.tygodnik-section .items a {
		width: calc(50% - 10px);
	}
	.tygodnik-section .items a:first-child {
		width: calc(100% - 10px);
	}
	.tygodnik-section .items a:first-child .title {
		position: static;
		padding: 10px 0 0;
		color: #141414;
		background-image: none;
		font-size: 1em;
		line-height: 1.5em;
	}
	.tygodnik-section .items a:nth-child(6) {
		clear: both;
	}
}

