@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
body {
    color-scheme: light;
    /* paleta podstawowa */
    --colorWhite: #fff;
    --colorLogoBlue: #2f6eb6;
    --colorLogoOrange: #eb7225;
    --colorLogoBlueHover: #357bcc;
    --colorMidBlue: #679bda;
    --colorOglBlue: #004b90;
    --colorLinkedinBlue: #0077b5;
    --colorLogoTurquoise: #56c5e9;
    --colorBlueSky: #7cdaf8;
    --colorBlueSkyLight: #a5dcee;
    --colorLightBlue: #becde4;
    --colorGreen: #22a361;
    --colorGreenGrass: #4f9628;
    --colorGreenAdmin: #060;
    --colorMediumSeaGreen: #159654;
    --colorGreenBtnToggle: #26925b;
    --colorGreenBtnToggleHover: #1e8651;
    --colorGreenIcon: #2fb672;
    --colorLightGreen: #d3f1cf;
    --colorRed: #c82814;
    --colorRedDarker: #c72510;
    --colorDelete: #cc0000;
    --colorDarkGray: #363636;
    --colorGray: #959595;
    --colorLightGray: #d7d7d7;
    --colorGrayToggle: #6b7381;
    --colorOrange: #eb7225;
    --colorOrangeLight: #fb853a;
    --colorPink: #d53d82;
    --colorPinkLight: #b41f6e;
    --colorPinkDark: #890e4f;
    --colorYellowLight: #ffa300;
    --colorYellowDark: #e59200;
    --colorBlack: #141414;
    --colorAI: #9b30ff;
    --boxShadow: 0px 0px 10px #0000001f;

    /* funkcyjne */
    --colorLink: var(--colorLogoBlue);
    --colorSpecial: var(--colorRed);
    --colorFormGray: var(--colorGray);
    /* statusy wyroznien */
    --colorMaxi: var(--colorPink);
    --colorMini: var(--colorOglBlue);
    --colorPremium: var(--colorOrange);
    --colorFree: var(--colorGray);
    /* text */
    --colorTypography: var(--colorDarkGray);
    --colorTypographyReverse: var(--colorWhite);
    --colorInvertedText: var(--colorTypographyReverse);
    /* bg */
    --backgroundOglSearchbar: #eeeeee;
    --backgroundBody: var(--colorWhite);
    --backgroundSection: #f5f5f5;
    --backgroundPanels: var(--colorWhite);
    --backgroundLightGray: #ebebeb;
    --backgroundLightBlue: #c7d7ec;
    --backgroundLightOrange: #fff7f0;
    --backgroundCategory: #ebf4ff;
    --backgroundFieldset: var(--colorWhite);
    --backgroundFieldsetDisabled: #efefef;
    --backgroundFieldsetFocus: #f1f6fd;
    --backgroundListSpecial: #fcf3f2;
    --backgroundBtnHover: #b3b2b2;
    --backgroundBtnSecondHover: #90909e;
    --backgroundBtnToggle: #bdc1c8;
    --backgroundMidBlue: #9ea9b6;
    --colorWhiteBg: var(--backgroundBody);

    /* border */
    --colorMainBorder: var(--borderColor);
    --borderColor: #d7d7d7;
    --borderColorFocus: #c7d7ec;
    --borderColorIntensive: #2f6eb6;

    /* scss */
    --colorGrayBg: #eeeeee;
    --colorMainBlue: var(--colorLogoBlue);
}

body.darkMode {
    color-scheme: dark;
    /* color */
    --colorLink: var(--colorMidBlue);
    --colorTypography: var(--colorWhite);
    --colorFormGray: #838383;
    /* bg */
    --backgroundBody: var(--colorBlack);
    --backgroundSection: var(--colorDarkGray);
    --backgroundPanels: var(--colorBlack);
    --backgroundCategory: var(--colorDarkGray);
    --backgroundFieldset: var(--colorBlack);
    --backgroundFieldsetDisabled: #272727;
    --backgroundFieldsetFocus: #2e2e2e;
    --backgroundListSpecial: var(--colorDarkGray);
    --backgroundLightGray: var(--colorDarkGray);
    --backgroundLightOrange: #959595;
    --backgroundOglSearchbar: var(--colorDarkGray);
    /* border */
    --borderColor: #5c5c5c;
    --borderColorFocus: #838383;

    --colorMini: var(--colorLogoBlue);

    /* scss */
    --colorGrayBg: #363636;
    --colorMainBlue: var(--colorMidBlue);
}

:root {
    --serviceColor: #2f6eb6;
    --colorMainAktywne: #9cc100;
    --colorMainBarometr: #0c5530;
    --colorMainBiznes: #132c6c;
    --colorMainCinema: #442f7a;
    --colorMainDeluxe: #663399;
    --colorMainDom: var(--colorMainBarometr);
    --colorMainDziecko: #cf0360;
    --colorMainFestivity: #f7d14a;
    --colorMainHistoria: #7b6447;
    --colorMainInwestycje: var(--colorMainBarometr);
    --colorMainImprezy: #d43f81;
    --colorMainKulinaria: #7b9301;
    --colorMainKultura: #602621;
    --colorMainMoto: #464646;
    --colorMainNauka: #004b90;
    --colorMainOgl: var(--serviceColor);
    --colorMainPraca: #44618b;
    --colorMainRaport: var(--serviceColor);
    --colorMainRowery: #647d3e;
    --colorMainSport: #eb7225;
    --colorMainTv: var(--serviceColor);
    --colorMainZdrowie: #7cb03d;
    --colorMainZwierzaki: #94603f;
}
.darkMode {
    --colorMainCinema: #7c7298;
}

/* archiwum */
.serviceColor__background {
    background-color: var(--serviceColor) !important;
}
.serviceColor__color {
    color: var(--serviceColor) !important;
}

/* modern - nowy style */
.iconModern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    vertical-align: middle;
    padding: 0;
    text-decoration: none !important;
    align-self: center;
}

.iconModern--gray {
    color: #959595;
}

.iconModern--orange {
    color: #eb7225;
}

.iconModern--blue {
    color: #2f6eb6;
}

.iconModern--bronze {
    color: #555351;
}

/* ikony na ciemnym tle */

.iconModern--inverted {
    color: #fff;
}

.iconModern.trm-news-zdaniem-eksperta {
    font-size: 16px;
}

.iconModern.trm-news-tylkounas {
    font-size: 16px;
}

.iconModern.trm-news-tylkounas-full {
    font-size: 20px;
}

.iconModern.trm-news-art-sponsorowany {
    font-size: 16px;
}

.iconModern.trm-news-material-partnera {
    font-size: 16px;
}

.iconModern.trm-news-konkurs {
    font-size: 7px;
}

.iconModern.trm-news-nowosc {
    width: 10px;
    background: #fff;
    border-radius: 5px;
}

.iconModern--inverted.trm-news-nowosc {
    background: transparent;
}

.iconModern--big {
    font-size: 20px;
}

.iconModern--big.iconModern.trm-news-konkurs {
    font-size: 8px;
}

.iconModern--big.trm-news-tylkounas-full {
    font-size: 30px;
}

.iconModern--big.iconModern.trm-news-material-partnera-full {
    font-size: 17px;
    position: relative;
    top: -1px;
}

.iconModern--mobile.trm-news-tylkounas-full {
    font-size: 16px;
}

/* old - stare style */

.trm.trm-ico-ze {
    display: block;
    font-size: 17px;
    color: #959595;
}

.trm-ico-ze-small {
    font-size: 15px;
}

.trm.trm-ico-ze-inline {
    display: inline;
    vertical-align: middle;
}

.mobile-page .news-wrap .trm-ico-ze {
    color: #004b90;
}

/* materiał prasowy */
.articleSponsored .trm.trm-ico-mp,
.trm.trm-ico-mp {
    margin-top: 3px;
    display: block;
    font-size: 13px;
    color: #959595;
}

.trm.trm-ico-mp-inline {
    display: inline;
    vertical-align: middle;
}

body{--colorMainText: #363636;--colorInvertedText: #fff;--colorMainBlue: #2f6eb6;--colorMainBg: #fff;--backgroundSection: #f5f5f5;--colorGrayBg: #eeeeee;--colorWhiteBg: #fff;--colorMainBorder: #d7d7d7;--colorFocusBorder: var(--colorMainBlue);--colorEd: #060;--colorAlmostWhite: #f5f5f5}body.darkMode{--colorMainText: #fff;--colorInvertedText: #363636;--colorMainBlue: #679bda;--colorMainBg: #141414;--backgroundSection: #363636;--colorGrayBg: #363636;--colorWhiteBg: #363636;--colorMainBorder: #959595;--colorEd: #23a353;--colorAlmostWhite: #5f5f5f}:root{--space-responsive: 20px}@media screen and (max-width: 768px){:root{--space-responsive: 10px}}.newsContent__text .component:not(.oglCrosslinkWrapper--single):not(.photoMarker):not(.newsPoll):not(.newsVideo):not(.currentNews):not(.sportTableContainer .component):not(.photosNewsWrapper):not(.simpleBoxWrapper){margin-bottom:0}.newsContent__text .simpleBoxWrapper{margin-top:20px}.newsContent__text .component+.component{margin-top:10px}.newsContent__text iframe:not(.video-js iframe){display:block !important;max-width:100%;margin:0 auto !important}.newsContent__text iframe:not(.video-js iframe)[src^="https://www.facebook.com"]{background-color:#fff}.newsContent__text .ticketsBox img{max-width:100%}.newsContent{font-family:"Roboto",sans-serif}.newsContent h1,.newsContent h2,.newsContent h3,.newsContent .button{font-family:inherit}.newsContent__text{margin-bottom:20px;font-size:17px;line-height:1.5;letter-spacing:.01em;word-break:break-word}.newsContent h2.internal{display:inline;font-size:26px;line-height:1.2;letter-spacing:-0.01em}.newsContent cite{display:block;padding-left:20px;border-left:2px solid var(--colorMainBlue)}.newsContent .lead{display:inline;font-weight:bold}.newsContent .update-article{margin:20px 0;border:1px dashed #959595}.newsContent .parse-link{color:inherit}.newsContent .icon-map{margin-left:5px}.newsContent .trm-ico-map-flat{width:18px;height:13px;margin-left:5px;background:url("/_img/svg/ico-map-flat.svg") center no-repeat}.newsContent pre{overflow:auto}@media screen and (max-width: 768px){.newsContent h2.internal{font-size:22px}.newsContent cite{padding-left:10px}}.newsHeader{gap:10px;font-family:inherit}.newsHeader__top,.newsHeader__bottom{display:flex;gap:10px;align-items:center}.newsHeader__title{font-size:33px;line-height:1.2;letter-spacing:-0.01em}.newsHeader .shareTooltip{margin-left:auto}.newsHeader__info{font-weight:500}.newsHeader__labelIsOursOnly{height:30px;color:var(--colorMainBlue);font-size:30px}.newsHeader__author{color:var(--colorMainBlue)}.newsHeader__opinions{display:flex;gap:5px;margin-left:auto}.newsHeader__listen .button::before{margin-right:6px;border:6px solid rgba(0,0,0,0);border-right-width:0;border-left-color:currentColor;border-left-width:8px;content:""}.newsHeader__listen--play .button::before{width:12px;height:12px;background:currentColor;border:none}.newsHeader__player{position:fixed;z-index:999;display:none;width:100%;max-width:1100px;margin:0 auto;inset:auto 0 env(safe-area-inset-bottom) 0;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.newsHeader__update{color:#c00;font-weight:bold}.newsHeader__old{color:#c00}.newsHeader__icon{white-space:nowrap}.newsHeader__icon a{display:inline-flex;gap:5px;align-items:center;vertical-align:bottom}.newsHeader__icon .trm-raport3{display:flex;font-size:18px}.newsHeader__categories{font-weight:500;text-transform:uppercase}.newsHeader__categories span{display:inline-flex;align-items:center}.newsHeader__categories span:not(:first-child)::before{margin:0 10px 0 5px;content:"•"}.newsHeader .icon-wrap{display:inline;vertical-align:bottom}.newsHeader .icon-wrap:empty{display:none}.newsHeader .iconModern--blue{color:var(--colorMainBlue)}.newsHeader__sportClub{color:#959595;font-size:inherit}.newsHeader__notReady{margin-bottom:10px;padding:10px;color:#c00;text-align:center;border:1px solid #c00;border-radius:5px}.newsHeader__supermocni{width:126px}@media screen and (max-width: 768px){.newsHeader__title{font-size:28px}.newsHeader__labelIsOursOnly{height:26px;font-size:26px}.newsHeader__listen .button{font-size:0}.newsHeader__listen .button::before{margin:0}}.newsAuthor{font-size:18px;font-family:inherit}.newsAuthor:empty{display:none}.newsAuthor a{display:flex}.newsAuthor__list{display:flex;flex-direction:column;gap:20px}.newsAuthor__item{display:flex;flex-direction:row;gap:20px;align-items:center}.newsAuthor__img{display:flex;overflow:hidden;border-radius:50%}.newsAuthor__img img{width:60px;height:60px;object-fit:cover}.newsAuthor__sourceImg{max-height:60px}.newsAuthor .trm-news-czytelnika-full{margin-top:5px;color:#959595}.newsAuthor--inSource{flex-direction:row-reverse;align-items:center;justify-content:space-between}.newsAuthor--inSource a{margin-left:auto}@media(min-width: 769px){.newsAuthor--2 .newsAuthor__list{flex-direction:row}.newsAuthor--2 .newsAuthor__item{flex:1}}.currentNews{position:relative;flex-direction:column;margin:20px 0;padding:0px 20px 0 40px;font-family:inherit}.currentNews::before{position:absolute;top:50%;left:10px;color:var(--colorMainBlue);font-size:25px;font-family:"font-trojmiasto";transform:translateY(-50%);content:""}.currentNews__label{font-size:10px;line-height:14px;letter-spacing:1px;text-transform:uppercase}.currentNews__title{padding:5px 0;font-weight:bold;font-size:20px;line-height:22px}.currentNews__title:hover{text-decoration:none !important}.newsContent .bullet-list,.newsContent .bullet-list-arrow{margin-left:20px}.newsContent .bullet-list li,.newsContent .bullet-list-arrow li{list-style-type:disc}.newsContent .bullet-list li::marker,.newsContent .bullet-list-arrow li::marker{color:var(--colorMainBlue)}.newsContent .bullet-list-arrow li{list-style-type:disclosure-closed}.newsContent .bullet-list-header{margin-bottom:20px;font-weight:bold;font-size:26px;line-height:1.2;letter-spacing:-0.01em}.newsContent .bullet-list-header+br{display:none}.newsContent ol.bullet-list{margin-left:40px}.newsContent ol.bullet-list li{margin-top:10px;list-style-type:decimal}.newsContent ol.bullet-list li::marker{font-weight:bold}@media screen and (max-width: 768px){.newsContent .bullet-list-header{font-size:22px}}.newsContent .article-quote-left,.newsContent .article-quote-right{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);width:365px;margin:6px 20px 20px;padding:var(--space-responsive);color:var(--colorMainBlue)}.newsContent .article-quote-left{float:left;margin-left:0}.newsContent .article-quote-right{float:right;margin-right:0}@media screen and (max-width: 768px){.newsContent .article-quote-left,.newsContent .article-quote-right{float:none;width:100%;margin:20px 0}}.newsContent [class*=-info-box],.newsContent .marker-cycle{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);position:relative;display:block;clear:both;padding:12px 20px;overflow:visible;font-weight:bold;font-size:18px;font-family:"OpenSans","OpenSans2","Open Sans",Arial,sans-serif;line-height:22px;letter-spacing:-0.04em}.newsContent [class*=-info-box]::before,.newsContent .marker-cycle::before{position:absolute;padding:0 10px;color:#fff;font-weight:bold;font-size:11px;line-height:20px;letter-spacing:0;text-transform:uppercase;background:var(--colorMainBlue);border-radius:10px;inset:-10px auto auto var(--space-responsive)}.newsContent [class*=-info-box],.newsContent [class*=-info-box] a,.newsContent .marker-cycle,.newsContent .marker-cycle a{text-decoration:none}.newsContent [class*=-info-box] a:first-child,.newsContent .marker-cycle a:first-child{display:block}.newsContent [class*=-info-box] a:first-child::after,.newsContent .marker-cycle a:first-child::after{position:absolute;content:"";inset:0}.newsContent [class*=-info-box] .tklikInfo,.newsContent .marker-cycle .tklikInfo{z-index:1;white-space:nowrap}.newsContent [class*=-info-box] p,.newsContent .marker-cycle p{display:flex;gap:15px;align-items:center;justify-content:space-between;line-height:1.2}.newsContent [class*=-info-box] p::before,.newsContent [class*=-info-box] p::after,.newsContent .marker-cycle p::before,.newsContent .marker-cycle p::after{font-weight:normal;font-family:"font-trojmiasto";line-height:1}.newsContent [class*=-info-box] p::before,.newsContent [class*=-info-box] p .trm,.newsContent .marker-cycle p::before,.newsContent .marker-cycle p .trm{order:1;margin-left:auto;color:var(--colorMainBlue);font-size:24px;line-height:26px}.newsContent [class*=-info-box] p::after,.newsContent .marker-cycle p::after{order:2;color:var(--colorMainBlue);font-size:24px;transform:scaleX(0.9);content:""}.newsContent [class*=-info-box] img,.newsContent .marker-cycle img{display:block;flex:0 0 auto;width:150px;height:100px;margin:-12px 0 -12px -20px;object-fit:cover;border-radius:5px 0 0 5px}.newsContent [class*=-info-box]:has(img)::before,.newsContent .marker-cycle:has(img)::before{left:170px}.newsContent [class*=-info-box]:has(img) p,.newsContent .marker-cycle:has(img) p{justify-content:flex-start}.newsContent [class*=-info-box]:has(img) p::before,.newsContent [class*=-info-box]:has(img) p::after,.newsContent .marker-cycle:has(img) p::before,.newsContent .marker-cycle:has(img) p::after{display:none}.newsContent .sport-info-box::before{content:"Sport"}.newsContent .sport-info-box p::before{font-size:20px;transform:translateX(4px);content:""}.newsContent .report-info-box::before{content:"Raport"}.newsContent .report-info-box p::before{font-size:24px;content:""}.newsContent .catalog-info-box::before{content:"Katalog"}.newsContent .catalog-info-box p::before{content:""}.newsContent .calendar-info-box{display:flex;gap:20px;align-items:center;justify-content:flex-start;margin-top:20px}.newsContent .calendar-info-box::before{content:"Imprezy i wydarzenia"}.newsContent .contests-info-box::before{content:"Konkursy"}.newsContent .contests-info-box p::before{content:""}.newsContent .transport-info-box::before{content:"Komunikacja"}.newsContent .transport-info-box p::before{font-size:26px;content:""}.newsContent .link-info-box p::before{content:""}.newsContent .link-info-box--icon p::before{display:none}.newsContent .link-info-box+br{display:none}.newsContent .marker-cycle::before{content:"Więcej na ten temat"}.newsContent .marker-cycle p::before{content:""}.newsContent .investments-info-box::before{content:"Inwestycje"}.newsContent .investments-info-box p::before{content:""}@media screen and (max-width: 768px){.newsContent [class*=-info-box],.newsContent .marker-cycle{padding:13px 15px;font-size:16px}.newsContent [class*=-info-box] p::before,.newsContent .marker-cycle p::before{font-size:24px}.newsContent [class*=-info-box]:has(img)::before,.newsContent .marker-cycle:has(img)::before{left:130px}.newsContent [class*=-info-box] img,.newsContent .marker-cycle img{width:120px;height:80px;margin:-13px 0 -13px -15px}.newsContent .sport-info-box p::before{font-size:14px}}.newsContent .news-table{width:100%}.newsContent .news-table tr:nth-child(odd){background:#eee}.newsContent .news-table tr:nth-child(odd) td:first-child{border-radius:5px 0 0 5px}.newsContent .news-table tr:nth-child(odd) td:last-child{border-radius:0 5px 5px 0}.newsContent .news-table td{padding:5px 10px}.usersArticle{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);position:relative;padding:var(--space-responsive);font-size:17px;font-family:inherit;line-height:1.4}.usersArticle .trm{position:absolute;display:flex;color:#cce3ff;font-size:120px;inset:auto auto 0 0}.darkMode .usersArticle .trm{color:#959595}.usersArticle p{z-index:1}@media screen and (max-width: 768px){.usersArticle{font-size:16px}}.photoMarker{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);display:block;width:min-content;max-width:100%;margin-right:auto;margin-left:auto;font-size:0;font-family:inherit;line-height:inherit}.photoMarker--left{float:left;clear:left;margin-right:20px}.photoMarker--right{float:right;clear:right;margin-left:20px}.photoMarker--fullwidth,.photoMarker--slider{width:100%}.photoMarker__slider .swiper-slide{overflow:hidden;text-align:center}.photoMarker__slider .swiper-button-prev,.photoMarker__slider .swiper-button-next{width:auto;height:auto;margin:0;padding:22px 20px;background:rgba(0,0,0,.3);transform:translateY(-50%);opacity:0;transition:opacity .2s ease}.photoMarker__slider .swiper-button-prev::after,.photoMarker__slider .swiper-button-next::after{color:#fff;font-weight:bold;font-weight:200;font-size:35px}.photoMarker__slider .swiper-button-prev{left:0;border-radius:0 5px 5px 0}.photoMarker__slider .swiper-button-next{right:0;border-radius:5px 0 0 5px}.photoMarker__slider .swiper-button-disabled{display:none}.photoMarker__slider:hover .swiper-button-prev,.photoMarker__slider:hover .swiper-button-next{opacity:1}.photoMarker>a{position:relative;display:block;overflow:hidden}.photoMarker__link::after{position:absolute;z-index:9;box-sizing:border-box;width:80px;padding:0 0 2px 2px;color:#fff;font-weight:300;font-size:90px;line-height:66px;text-align:center;border:6px solid #fff;border-radius:50%;opacity:0;filter:drop-shadow(2px 2px 5px #000);transition:opacity .2s ease;content:"+";pointer-events:none;inset:calc(50% - 40px) calc(50% - 40px) auto auto}.photoMarker__link:hover::after{opacity:1}.photoMarker__img{position:relative;z-index:1;max-height:calc(100vh - 100px);object-fit:contain}.photoMarker--slider .photoMarker__img{max-height:calc(100vh - 200px)}.photoMarker--fullwidth .photoMarker__img{display:block;width:100% !important;height:auto !important;margin-right:auto;margin-left:auto}.photoMarker__imgWrapper{position:relative;overflow:hidden}.photoMarker__bg{position:absolute;width:100%;height:100%;opacity:.4;filter:blur(50px);inset:0 0 0 0}.photoMarker__counter{position:absolute;z-index:1;color:#363636;font-size:14px;pointer-events:none;inset:auto var(--space-responsive) var(--space-responsive) auto}.photoMarker__counter .trm{display:flex;color:#fff;font-size:28px;opacity:.8}.photoMarker__counter strong{position:absolute;display:flex;align-items:center;justify-content:center;inset:5px 0 0 0}.photoMarker__thumbs{position:relative;margin-top:var(--space-responsive)}.photoMarker__thumbs .swiper{width:634px;margin:0 auto}.photoMarker__thumbs .swiper-wrapper{box-sizing:border-box;height:auto}.photoMarker__thumbs .swiper-slide{height:104px;overflow:hidden;border:2px solid rgba(0,0,0,0);border-radius:5px;cursor:pointer}.photoMarker__thumbs .swiper-slide-thumb-active{border-color:#eb7225}.photoMarker__thumbs .swiper-slide:last-child{margin:0 !important}.photoMarker__thumbs .swiper-slide img{width:100%;height:100px;object-fit:cover}.photoMarker__thumbs .swiper-button-prev::after,.photoMarker__thumbs .swiper-button-next::after{color:var(--colorMainBlue);font-weight:bold;font-size:32px}.photoMarker__thumbs .swiper-button-prev{left:15px}.photoMarker__thumbs .swiper-button-next{right:15px}.photoMarker__thumbs .swiper-button-disabled{display:none}.photoMarker__footer{padding:var(--space-responsive);font-size:14px;text-align:center}.photoMarker--left .photoMarker__footer,.photoMarker--right .photoMarker__footer,.news-gallery-list .photoMarker__footer{min-width:100%;max-width:min-content}.photoMarker__author{color:#959595;text-align:center}@media screen and (max-width: 768px){.photoMarker{float:none;width:calc(100% + 20px) !important;max-width:none;margin-right:-10px !important;margin-left:-10px !important}cite .photoMarker{width:100% !important;margin-right:0 !important;margin-left:0 !important}.photoMarker__slider .swiper-button-prev,.photoMarker__slider .swiper-button-next{padding:15px;opacity:1}.photoMarker__slider .swiper-button-prev::after,.photoMarker__slider .swiper-button-next::after{font-size:30px}.photoMarker__link::after{display:none}.photoMarker__img{width:100%;max-height:100vw !important}.photoMarker--single .photoMarker__img{height:auto !important}.photoMarker__bg{filter:blur(20px)}.photoMarker__thumbs .swiper{width:calc(100vw - 68px);max-width:532px}.photoMarker__thumbs .swiper-slide{display:flex;height:auto;border-width:1px;aspect-ratio:95/72}.photoMarker__thumbs .swiper-slide img{height:auto}.photoMarker__thumbs .swiper-button-prev::after,.photoMarker__thumbs .swiper-button-next::after{font-size:26px}.photoMarker__thumbs .swiper-button-prev{left:3px}.photoMarker__thumbs .swiper-button-next{right:3px}}@media screen and (orientation: landscape)and (max-height: 400px){.photoMarker__img{max-height:80vh !important}}.newsPoll{display:flex;flex-direction:column;padding:20px 15px 15px;background:var(--colorGrayBg);border-radius:5px}.newsPoll--news{float:right;clear:right;width:325px;margin-left:20px;padding:20px 20px 10px}.newsPoll--news .newsPoll__title{margin-bottom:20px;color:#2f6eb6;line-height:1.1}.newsPoll--news .newsPoll__option{padding:10px 20px 10px 35px;font-size:14px;line-height:1.2;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275)}.newsPoll--news .newsPoll__option--result{padding-left:50px}.newsPoll--news .newsPoll__container{margin-bottom:10px}.newsPoll--news .newsPoll__footer{justify-content:space-between;font-size:13px}.newsPoll--news .newsPoll__footer :last-child{margin-left:auto}.newsPoll--loading .newsPoll__container{opacity:.3}.newsPoll__title{margin-bottom:10px;color:var(--colorMainText);font-weight:bold;font-size:20px;font-family:inherit !important;line-height:24px;letter-spacing:-0.04em}.newsPoll__title a{color:inherit}.newsPoll__option{position:relative;display:block;margin-bottom:2px;padding:8px 20px 7px 35px;overflow:hidden;font-size:15px;background:#fff;border-radius:5px;cursor:pointer;transition:all 100ms ease-in-out}.newsPoll__option:hover{background:#f5f5f5}.darkMode .newsPoll__option{background:rgba(0,0,0,0);border:1px solid #959595}.darkMode .newsPoll__option:hover{background-color:color-mix(in hsl, #959595, #000 10%)}.newsPoll__option--choosen{font-weight:bold}.newsPoll__option--result{padding-left:50px;cursor:default}.newsPoll__option--result:hover{background:#fff}.darkMode .newsPoll__option--result:hover{background:#959595}.newsPoll__option--result::before{display:none}.newsPoll__option::before{position:absolute;top:50%;left:10px;width:15px;height:15px;background:#fff;border:1px solid #2f6eb6;border-radius:50%;transform:translateY(-50%);content:""}.darkMode .newsPoll__option::before{border-color:#d7d7d7}.newsPoll__option input{display:none}.newsPoll__percent{position:absolute;top:50%;left:10px;z-index:1;transform:translateY(-50%)}.newsPoll__text{position:relative;z-index:1}.newsPoll__bar{position:absolute;top:0;bottom:0;left:0;background:#cce3ff;animation:expand 1s ease}.darkMode .newsPoll__bar{background:#679bda}.newsPoll__option--choosen .newsPoll__bar{background-color:color-mix(in hsl, #cce3ff, #000 10%)}.darkMode .newsPoll__option--choosen .newsPoll__bar{background:#2f6eb6}.newsPoll__button{color:var(--colorMainBlue);font-weight:bold;font-family:inherit;text-align:right;background:none;border:none;outline:none;cursor:pointer}.darkMode .newsPoll__button{color:#679bda}.newsPoll__button:hover{text-decoration:underline}.newsPoll__button span{color:#959595;font-weight:normal}.newsPoll__button--opinion{font-weight:400}.newsPoll__footer{display:flex;gap:15px;justify-content:flex-end;font-size:15px}.newsPoll__footer a{padding:10px 0}.newsPoll__loader{display:none !important}.newsPoll--loading .newsPoll__loader{color:#2f6eb6;font-size:50px;animation:spin 1s infinite linear;position:absolute;top:calc(50% - 12px);left:calc(50% - 12px);display:block !important;color:#679bda;font-size:55px}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.newsPoll__info{color:#eb7225}.newsPoll__error{margin-bottom:10px;color:#c00;font-weight:bold;text-align:center}.newsPollWrapper{margin-top:20px}.randomPoll{position:relative;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding:10px 15px 11px 10px;background-color:#fff;border-radius:5px;transition:border .3s ease-in-out}.darkMode .randomPoll{background-color:rgba(0,0,0,0);border:1px solid #959595}.randomPoll__url{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%}.randomPoll__url:hover~span.trm{transform:translate(3px, -50%)}.randomPoll__vote{color:#eb7225;font-weight:bold;font-size:12px;line-height:17px;text-transform:uppercase}.randomPoll__title{padding-right:25px;color:var(--colorMainText);font-weight:bold;font-size:18px;line-height:22px}.randomPoll span.trm{position:absolute;top:50%;right:5px;color:#2f6eb6;font-size:24px;transform:translateY(-50%);transition:transform .2s ease-in-out}.darkMode .randomPoll span.trm{color:#679bda}@media screen and (max-width: 768px){.newsPoll{float:none;width:100%;margin-left:0}}@keyframes expand{from{width:0}}.newsVideo{gap:10px;font-family:inherit;line-height:inherit}.newsVideo__title{font-size:26px;line-height:1.2;letter-spacing:-0.01em}.newsVideo__desc{color:#959595;font-size:14px;text-align:center}@media screen and (max-width: 768px){.newsVideo__title{font-size:22px}}.newsContent .tableOfContents{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);padding:var(--space-responsive) var(--space-responsive) var(--space-responsive) 40px;font-family:inherit}.newsContent .tableOfContents__item{list-style-type:disc}.newsContent .tableOfContents__item::marker{color:#eb7225}.objectRating{display:flex;flex-direction:row;gap:2px;overflow:hidden;font-size:18px;border-radius:5px}.objectRating__container{position:relative;display:flex;flex:1;flex-direction:row;gap:10px;align-items:center;padding:var(--space-responsive) 20px;background:var(--colorGrayBg)}.objectRating__author{flex:1;color:var(--colorMainBlue);font-weight:600}.objectRating__author span{font-weight:bold;font-size:50px;line-height:1}.objectRating__link{color:inherit}.objectRating__link:hover{text-decoration:none}.objectRating__link::before{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;content:""}.objectRating__link:hover .objectRating__label{text-decoration:underline}.objectRating__user{display:flex;flex-wrap:wrap;gap:5px;align-items:center}.objectRating__label{width:100%}.objectRating__mark{color:var(--colorMainBlue);font-weight:bold}.objectRating__stars{display:flex;gap:3px;color:#d7d7d7;font-size:14px}.objectRating__stars--filled{position:absolute;color:var(--colorMainBlue);transform:translateY(-50%);-webkit-clip-path:inset(0 calc(100% - var(--width)) 0 0);clip-path:inset(0 calc(100% - var(--width)) 0 0);inset:50% auto auto 0}.objectRating__starsWrapper{position:relative}.objectRating__count{color:#959595}.objectRating__button{display:flex;align-items:center;padding:var(--space-responsive);color:#fff;font-weight:bold;background:var(--colorMainBlue)}@media screen and (max-width: 768px){.objectRating{flex-direction:column;font-size:16px}.objectRating__container{flex-direction:column;align-items:flex-start}.objectRating__author span{font-size:38px}.objectRating__button{justify-content:center}}.ranking{flex-direction:row;align-items:center;padding:5px 5px 5px 0;line-height:1.2;background:#2fb672;border-radius:10px}.ranking__icon{display:flex;gap:10px;align-items:center;padding:0 10px;color:#fff;font-size:18px;line-height:1}.ranking__icon .trm{display:flex;justify-content:center;font-size:30px}.ranking__content{display:flex;flex:1;align-items:center;justify-content:space-between;padding:10px 15px;background:var(--colorMainBg);border-radius:5px}.ranking__category{display:flex;flex-shrink:0;gap:5px;align-items:center;justify-content:center;color:#2fb672;font-size:12px}.ranking__category span{display:block;color:var(--colorMainBlue);font-weight:bold}.ranking__place{font-weight:bold;font-size:36px}.ranking__object{text-align:right}.ranking__name{font-weight:bold;font-size:16px}.ranking__address{font-size:12px}.ranking__mark{padding:0 15px 0 10px;color:#fff;font-weight:bold;font-size:24px}.ranking__link{position:absolute;top:0;right:0;bottom:0;left:0;z-index:200}.ranking--nameonly{position:relative;width:auto;margin-right:34px;border-radius:5px 0 0 5px}.ranking--nameonly::after{position:absolute;top:10px;right:-24px;display:block;box-sizing:content-box;width:43px;height:43px;border:solid #2fb672;border-width:0 5px 5px 0;transform:rotate(-45deg);content:""}.ranking--nameonly .ranking__icon{padding:0 20px}.ranking--nameonly .ranking__category{flex-direction:column;gap:0;align-items:flex-start;font-size:14px}.ranking--nameonly .ranking__category span{font-size:18px}.ranking--nameonly .ranking__content{margin-right:-5px;border-radius:5px 0 0 5px}@media screen and (max-width: 768px){.ranking__icon{padding:0 5px !important}.ranking__label{display:none}.ranking__content{padding:5px 10px}.ranking__category span{display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}.ranking__mark{padding:0 10px 0 5px}.ranking--nameonly{margin-right:30px}.ranking--nameonly::after{position:absolute;top:9px;right:-21px;width:36px;height:36px}}.rankingObject{position:relative;flex-direction:row;gap:var(--space-responsive);align-items:center;padding:10px var(--space-responsive);font-size:14px;background:var(--colorGrayBg);border-radius:5px}.rankingObject__place{color:var(--colorGreenIcon);font-weight:bold;font-size:60px;line-height:1}.rankingObject__content{flex:1}.rankingObject__title{color:var(--colorMainBlue);font-size:18px;line-height:24px;letter-spacing:-0.04em}.rankingObject__title--thin{font-weight:400}.rankingObject__location{font-size:16px;line-height:24px}.rankingObject__buttonWrap{text-align:center}.rankingObject__buttonWrap .button{position:relative;z-index:21;gap:5px;padding:2px 10px;font-size:16px;line-height:1;box-shadow:none}.rankingObject__buttonWrap .button span{font-size:20px;line-height:1}.rankingObject__buttonWrap .button:any-link{color:var(--colorMainText)}.rankingObject__mark{color:var(--colorGreenIcon);font-weight:700;font-size:34px;letter-spacing:-0.04em}.rankingObject__mark span{font-weight:400;font-size:16px}.rankingObject__logo{display:flex;align-items:center;justify-content:center;width:70px}.rankingObject__logo img{display:block;max-width:100%;max-height:50px}.rankingObject__link{position:absolute;z-index:10;inset:0}.rankingObject .tklikInfo{position:absolute;right:5px;bottom:5px;z-index:20}@media screen and (max-width: 768px){.rankingObject__place{font-size:44px}.rankingObject__content{min-width:0;letter-spacing:-0.04em}.rankingObject__title{font-size:16px}.rankingObject__location{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:14px}.rankingObject__mark{font-size:30px}.rankingObject__buttonWrap .button{font-size:14px}.rankingObject__logo{display:none}}.newsContent__text .rankingObject{margin-bottom:10px !important}.newsContent__text .rankingObject+br{display:none}.newsCompanies .heading{margin-bottom:5px}.newsCompanies__wrapper{position:relative}.newsCompanies__slider{margin:0 10px;padding:10px}.newsCompanies__more{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);position:relative;display:flex;gap:20px;align-items:center;justify-content:space-between;justify-content:center !important;height:auto;padding:20px}.newsCompanies__more a{display:block;width:100%;line-height:1.2;text-align:center}.newsCompanies__more a:hover{text-decoration:none}.newsCompanies__more a .trm{display:block;margin-bottom:5px;font-size:50px;line-height:1}.newsCompanies__more a span{color:#eb7225}.newsCompanies__arrow--prev,.newsCompanies__arrow--next{width:auto;color:var(--colorMainBlue);font-weight:bold}.newsCompanies__arrow--prev::after,.newsCompanies__arrow--next::after{font-size:20px}.newsCompanies__arrow--prev{left:0}.newsCompanies__arrow--next{right:0}.apkBox{position:relative;display:flex;align-items:center;justify-content:flex-start;margin-top:45px;padding:15px 15px 15px 80px;background:var(--colorGrayBg);border-radius:5px}.apkBox__icon{position:absolute;top:-32px;left:18px;display:flex;align-items:center;justify-content:center;width:63px;height:63px;overflow:hidden;color:#fff;font-size:59px;background-color:#2f6eb6;border:2px solid #fff;border-radius:50%}.apkBox__icon .trm{display:flex;color:inherit;font-size:33px;text-decoration:none}.apkBox__text{font-size:16px;line-height:28px}.apkBox__button{display:inline-block;padding:1px 15px;color:#fff !important;font-weight:600;background:var(--colorMainBlue);border-radius:5px}.apkBox--report .apkBox__button{text-transform:uppercase;text-decoration:none;background:#eb7225;border-radius:15px}.apkBox--report .apkBox__button span{font-weight:normal;font-size:22px;vertical-align:-1px}.apkBox--push .apkBox__icon{background-color:#eee}.apkBox--push .apkBox__iframe{transform:scale(0.8)}.apkBox--install .apkBox__icon{font-size:22px;background-color:#eee}.apkBox--install .apkBox__img{transform:scale(0.8)}@media screen and (max-width: 768px){.apkBox{justify-content:center;margin-top:55px;padding:30px 22px 22px;text-align:center}.apkBox__icon{top:-42px}.apkBox__text{line-height:22px}.apkBox__button{margin-top:7px;padding:5px 15px}}@media(min-width: 769px){.news-gallery-list-vertical{float:right;margin-left:20px}.news-gallery-list-horizontal{display:flex;justify-content:space-evenly}}@media screen and (max-width: 768px){.news-gallery-list li{width:100% !important}}.simpleBox{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275)}.simpleBox a:any-link{font-weight:bold}.simpleBox__content{position:relative;margin:20px var(--space-responsive) var(--space-responsive) var(--space-responsive)}.simpleBox__tag{position:absolute;left:var(--space-responsive);padding:0 10px;font-weight:bold;font-size:11px;line-height:20px;text-transform:uppercase;transform:translateY(-50%)}.simpleBox__title{margin-bottom:10px;font-size:16px}.simpleBox__img{float:right;max-width:280px;margin:20px;border-radius:5px}.simpleBox--shipMap .simpleBox__img{width:355px;max-width:none;height:127px;object-fit:cover}.simpleBox .more{clear:both;margin:var(--space-responsive)}.simpleBox--supermocni{margin-top:10px}.simpleBox--supermocni::before{position:absolute;background:url("/build/assets/svg/news/supermocni.svg") left -110px bottom -42px no-repeat;opacity:.2;content:"";inset:0}.simpleBox--supermocni .pill{height:22px;margin-left:10px;padding:0 10px 0 6px}.simpleBox--supermocni .pill img{height:32px;margin:0 7px 0 -17px}@media screen and (max-width: 768px){.simpleBox__img{width:100px;min-height:75px;margin:15px 10px 10px;object-fit:cover}.simpleBox--shipMap .simpleBox__img{width:155px;height:105px}.simpleBox--investmentsMap .simpleBox__img{width:125px;height:100px}.simpleBox--barometer .simpleBox__img{width:174px;height:83px}}.newsMarker{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);flex-direction:row;align-items:center}.newsMarker__img{width:150px;height:100px;object-fit:cover}.newsMarker .newsMarker__title{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;flex:1;padding:0 var(--space-responsive);font-weight:bold;font-size:18px;line-height:1.3;letter-spacing:-0.04em}@media screen and (max-width: 768px){.newsMarker__img{width:120px;height:80px}.newsMarker .newsMarker__title{font-size:16px}}.calendarEvents{position:relative}.calendarEvents__list{display:flex;gap:10px;align-items:stretch}.calendarEvents__list>*{flex:1;margin:0 !important}@media screen and (max-width: 768px){.calendarEvents__list{flex-direction:column}}.calendarEventsList{display:flex;gap:2px;align-items:center;justify-content:flex-start}@media screen and (max-width: 768px){.calendarEventsList{overflow:scroll}}.calendarEventsItem{position:relative;flex:1;overflow:hidden}@media screen and (max-width: 768px){.calendarEventsItem{flex:1 0 auto}}.calendarEventsItem:first-child{border-top-left-radius:5px;border-bottom-left-radius:5px}.calendarEventsItem:last-child{border-top-right-radius:5px;border-bottom-right-radius:5px}.calendarEventsItem__img{display:block;width:100%;height:192px;object-fit:cover}@media screen and (max-width: 768px){.calendarEventsItem__img{width:128px;height:170px}}.calendarEventsItem__content{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;padding:10px;color:#fff;line-height:1;background:rgba(0,0,0,0) linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6980392157) 100%) 0% 0% no-repeat padding-box}.calendarEventsItem__title{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden;padding:2px 0;color:inherit !important;font-weight:700;font-size:18px;letter-spacing:-0.72px}.calendarEventsItem__title::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:" "}@media screen and (max-width: 768px){.calendarEventsItem__title{font-size:16px;line-height:20px}}.calendarEventsItem__genre{font-size:12px}.calendarEventsItem__place{margin-top:10px;font-size:15px}.calendarEventsItem .calendar-icon{position:absolute;top:10px;right:5px}.calendarEventsItem .markStars{position:absolute;inset:15px auto auto 10px;text-shadow:0px 0px 6px rgba(0,0,0,.5019607843)}.calendarEventsItem .markStars__top{font-size:16px}.calendarEventsItem .markStars__mark{font-size:18px}.calendarEventsItem .ticket-buy,.calendarEventsItem .kup_bilet_wrap a.modal-trigger{position:relative;z-index:10;width:auto;padding:5px 15px;white-space:nowrap;background:#ce1414;border-radius:5px}.calendarEventsMikolajki .calendarEventsList{position:relative;padding:10px 10px 10px 276px;background:#2897c9;border-radius:5px}@media(min-width: 769px){.calendarEventsMikolajki .calendarEventsList{gap:10px;margin-top:10px}}@media screen and (max-width: 768px){.calendarEventsMikolajki .calendarEventsList{padding-left:43%}}.calendarEventsMikolajki .calendarEventsList::before{position:absolute;background:url("/build/assets/svg/mikolajki.svg") top left no-repeat;content:"";inset:-10px 0 0 0}@media screen and (max-width: 768px){.calendarEventsMikolajki .calendarEventsList::before{width:140px;background-position-y:10px;inset:0}}.calendarEventsMikolajki .calendarEventsList::after{position:absolute;width:140px;color:#fff;font-weight:bold;font-size:20px;line-height:1.22;content:"Mikołajki w Trójmieście";inset:auto auto 20px 20px}@media screen and (max-width: 768px){.calendarEventsMikolajki .calendarEventsList::after{inset:auto auto 10px 10px;font-size:18px;letter-spacing:-0.04em}}@media(min-width: 769px){.calendarEventsMikolajki .calendarEventsItem{margin-top:-20px;border-radius:5px}.calendarEventsMikolajki .calendarEventsItem:nth-child(3)~*{display:none}}.relatedList{display:flex;flex-direction:column;gap:5px;margin-left:10px;font-size:16px}.relatedListItem__opinions{color:#959595}.relatedList--locations{margin-left:0}.placeListItem{display:flex;gap:10px;align-items:center}.placeListItem__content{flex:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.placeListItem__link i{position:relative;margin-right:5px;font-size:20px;vertical-align:middle}.placeListItem__ranking{display:flex;gap:2px;max-width:100%;overflow:hidden;font-size:14px;border-radius:5px}.placeListItem__category{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;flex:1;padding:3px 7px;background:var(--colorGrayBg)}.placeListItem__position{padding:3px 7px;color:#2fb672;white-space:nowrap;background:var(--colorGrayBg)}.placeListItem__score{padding:3px 7px;color:#fff;font-weight:bold;white-space:nowrap;background:#2f6eb6}@media screen and (max-width: 768px){.placeListItem{flex-direction:column;gap:5px;align-items:flex-start}}.newsCompetition{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275)}.newsCompetition__container{margin:20px;padding-bottom:20px;border-bottom:1px solid #d7d7d7}.newsCompetition__container:last-child{border:none}.newsCompetition__container--inRow{display:flex;flex-direction:row-reverse;gap:20px;align-items:stretch;justify-content:space-between}.newsCompetition__photo{margin:-20px -20px 0 0}.newsCompetition__photo img{display:block}.newsCompetition__type{margin-bottom:5px;background:#23a353 !important;cursor:auto}.newsCompetition__title{margin:0 0 20px 0;font-weight:bold;font-size:18px;line-height:1.2;letter-spacing:-0.04em}.newsCompetition__subtitle{color:#959595;font-weight:bold;font-size:12px;letter-spacing:.04em;text-transform:uppercase}.newsCompetition__timer{margin-bottom:10px;font-size:10px}.newsCompetitionPrize{color:#23a353;font-weight:bold;text-transform:uppercase}.newsCompetitionPrize__icon{margin-right:3px;font-size:22px;vertical-align:baseline}.newsCompetitionPrize__counter{margin-right:3px;font-size:30px;line-height:1}.newsCompetitionPrize__text{display:inline-block;max-width:100px;font-size:12px;line-height:1}.newsCompetition__alert{margin-bottom:20px;padding:15px 20px;background:#eee;border-radius:5px}.newsCompetition__alert:last-child{margin-bottom:0}.newsCompetition__alert .newsCompetition__subtitle{color:#2f6eb6}.newsCompetition__section{margin-bottom:20px}.newsCompetition__section .newsCompetition__title{margin:0}.newsCompetition__columns{display:flex;flex-wrap:wrap;gap:var(--space-responsive);margin-bottom:20px}.newsCompetition__input{flex:1;min-width:calc(33.33% - 13.33px)}.newsCompetition__rodo li{margin-bottom:10px}.newsCompetition__rodo li span{color:#c00}.newsCompetition__footer{display:flex;align-items:center;justify-content:space-between}.newsCompetition--finished .newsCompetition__photo{opacity:.5}.newsCompetition--finished .newsCompetition__type{background:#959595 !important}.newsCompetition--finished .newsCompetitionPrize{color:var(--colorMainText)}@media screen and (max-width: 768px){.newsCompetition__photo{float:none}.newsCompetition__photo img{width:100%;object-fit:cover}.newsCompetition__columns{flex-direction:column}}.articleSponsored{color:#959595}.articleSponsored .trm{font-size:17px}.articleSponsored__text{font-size:14px}.person{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);display:flex;gap:var(--space-responsive);align-items:flex-start;padding:var(--space-responsive);line-height:1.4}.person__content{flex:1}.person__name{font-size:18px}.person__title{font-size:18px}.person__desc:not(:first-child){margin-top:10px}.person__news h5{margin:10px 0;font-size:15px}.person__news ul{padding-left:20px}.person__news ul li{list-style-type:disc}.person__news ul li::marker{color:#2f6eb6}.person__news ul li span{color:#959595;white-space:nowrap}.person+.person{margin-top:10px}.questionBox{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);padding:var(--space-responsive)}.questionBox__footer{display:flex;gap:var(--space-responsive)}.questionBox__footer div{flex:1}.questionBox__footer .button{padding:10px 40px}.questionBox .alert{display:none;margin:0}.questionBox label,.questionBox p{display:block;margin-bottom:5px}@media screen and (max-width: 768px){.questionBox__footer{flex-direction:column;align-items:center}.questionBox__footer div{width:100%}}.quickLink{display:flex;gap:10px;align-items:center;justify-content:flex-start}.quickLink .text{flex:0 1 auto;color:#2f6eb6;font-weight:700;font-size:17px;line-height:20px}.quickLink .button{flex-shrink:0}.quickLink .trm{margin-left:8px;font-size:12px;transform:translateY(1px)}.quickLink:visited{color:#2f6eb6}.quickLink:hover{text-decoration:none}.quickEvents{position:relative;display:flex;gap:10px;align-items:center;justify-content:space-between;margin-top:40px;font-family:"OpenSans","OpenSans2";background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 6px rgba(0,0,0,.161)}.quickEvents__content{display:flex;flex:0 0 auto;flex-direction:column;align-items:center;padding:20px 0px 10px 20px}.quickEvents__text{font-size:16px;line-height:22px}.quickEvents__text--title{font-weight:700;font-size:18px}.quickEvents__button{margin-top:5px}.quickEvents__photo{flex:1 1 auto;margin-right:10px}.quickEvents__img{max-width:100%;transform:translateY(-40px)}.quickEvents br{display:none !important}.quickEvents:hover{text-decoration:none}@media screen and (max-width: 768px){.quickEvents{flex-direction:column-reverse;margin-top:100px}.quickEvents__content{padding:0 5px 20px;text-align:center}.quickEvents__photo{margin:0}.quickEvents__img{margin-top:-100px;transform:none}}.newsPlaceholder{position:fixed;z-index:9999999;display:none;flex-direction:column;gap:10px;padding:10px;overflow:hidden;background:var(--colorMainBg);inset:0 0 auto 0}.newsPlaceholder__item{height:20px;background:var(--colorGrayBg);animation:opacityPulse .5s linear infinite alternate}.newsPlaceholder__item--ad{height:200px}.newsPlaceholder__item--big{height:30px}.newsPlaceholder__item--mid{width:80%}.newsPlaceholder__item--short{width:30%}.newsPlaceholder__item--media{height:auto;aspect-ratio:16/9}@keyframes opacityPulse{to{opacity:.5}}.find{display:flex;align-items:flex-start;justify-content:flex-start;margin:0 0 20px;font-size:18px;font-family:"OpenSans"}.archiwum_form{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);margin:0 0 20px;padding:20px}.archiwum_form dl{display:flex;flex-wrap:wrap;align-items:flex-start}.archiwum_form dt{width:30%;margin:6px 0 0}.archiwum_form dd{display:flex;align-items:center;width:70%}.archiwum_form label{display:block;margin:0 0 6px}.archiwum_form .select2{margin:0 0 10px}.archiwum_form .advanced_search span{position:relative;top:-5px;margin:0 10px}.archiwum_form [type=text]{margin:0 0 10px}.archiwum_form [type=checkbox]+label{margin:0 0 13px}.archiwum_form [type=submit]{min-width:150px;margin:10px 0 0 auto}.newsContent .news-box{overflow:hidden;background:var(--colorWhiteBg);border-radius:5px;box-shadow:0px 0px 10px rgba(0,0,0,.1215686275);padding:var(--space-responsive)}@media print{header,.main__sidebar,#footer,.shareTooltip{display:none}.main,.main__content{width:100% !important}}
