h1,h2,h3,p {margin:0;}
input, textarea, button {
    -webkit-border-radius:0;
    border-radius:0;
    padding: 0;
    outline: none;
}
button, button:focus {
   outline: none;
}

.hidden{
    display:none;
}

/* SEO: for screen readers only, no layout/visual change */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Breadcrumbs */
.breadcrumbs-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.breadcrumbs-wrap::-webkit-scrollbar {
    height: 4px;
}
.breadcrumbs-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.breadcrumbs-wrap::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}
.breadcrumbs-wrap::-webkit-scrollbar-thumb:hover {
    background: #999;
}
.breadcrumbs {
    width: 100%;
    min-width: min-content;
}
.breadcrumbs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}
.breadcrumbs-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 13px;
    line-height: 1.4;
}
.breadcrumbs-item:not(:first-child)::before {
    content: "/";
    color: #999;
    margin: 0 8px;
    font-weight: 400;
    pointer-events: none;
}
.breadcrumbs-item a {
    color: #000000;
    text-decoration: none;
    padding: 2px 0;
}
.breadcrumbs-item a:hover {
    color: #EB1426;
}
.breadcrumbs-item.active span,
.breadcrumbs-item.active a {
    color: #EB1426;
    font-weight: 700;
}
.breadcrumbs-item.active span {
    padding: 2px 0;
}
@media screen and (max-width: 768px) {
    .breadcrumbs-wrap {
        margin-bottom: 10px;
        padding-bottom: 8px;
    }
    .breadcrumbs-wrap::-webkit-scrollbar {
        display: none;
    }
    .breadcrumbs-wrap {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .breadcrumbs-item {
        font-size: 12px;
    }
    .breadcrumbs-item:not(:first-child)::before {
        margin: 0 6px;
    }
}

.blue{
    color:#3f8ecc !important;
}


/* This used to work for parent element of button divs */

/* But it is not enough now, below dont hide play button parent div */

*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */

*::--webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works */

*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}


/* #Helper classes
================================================== */
a {
    text-decoration: none;
}

img {
    text-decoration: none;
}
.center_them {
     display:inline-block;
     zoom: 1;
    *display:inline;
}
.vertical_centering_css3 {
    position: relative;
    float: left;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.horizontal_centering_css3 {
    position: relative;
    float: left;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.clear { clear: both; }
.left { float: left; }
.right { float: right; }
.pointer {cursor: pointer;}
.relative {position: relative;}
.absolute {position:absolute;}
.invisible {display: none;}
.block {display:block !important;}
.w100 {width:100%;}
.w100_important {width:100% !important;}
.center {text-align:center;}
.text-left {text-align:left !important;}
.upper {text-transform: uppercase;}
.bold {font-weight:bold;}
.decor_none {text-decoration: none;}
.border_none {border: 0 !important;}
.box_sizing {box-sizing:border-box;}
.overflow_hidden {overflow: hidden;}
.clearfix {
   zoom:1;}
.clearfix:after {
   content: "";
   display: block;
   clear: both;
   height: 0;
}
.mt30 {
    margin-top: 15px;
}
.rotate180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.black {color:#111111;}
.white {color:#fff;}
.btn:hover {
    color: #fff;
}


.mobile {
    display: none;
}


body{
   font-family: "Open Sans", sans-serif;
      font-optical-sizing: auto;
      font-weight: <weight>;
      font-style: normal;
   
}
main{
    float:left;
    width:100%;
}
.site-wrap {
    width:1360px;
    margin:0 auto;
}
.two-column-container {
    float:left;
    width:100%;
    display:flex;
    gap:20px;
    
}
.left-column-container {
    width:calc(100% - 305px);
}
.right-column-container {
    width: 305px;
    margin-top:30px;
}
.top-small-news {
    float:left;
    width:100%;
    padding-bottom:20px;
    box-sizing:border-box;
    border-bottom:1px solid #EBEBEB;
}
.top-news {
    float:left;
    width:100%;
    margin-top:30px;
    display:flex;
    gap:20px;
}
.top-news-box {
    width:25%;
    float:left;
}
.ticket {
    background:#EB1426 ;
    font-size:10px;
    text-transform: uppercase;
    color:#fff;
    padding:5px;
    box-sizing:border-box;
}
.small-title {
    color:#000000;
    font-weight: 700;
    font-size:16px;
    line-height: 22px;
    font-family: "Playfair Display", serif;
}
.small-title:hover {
    color:#EB1426;
}
.top-title {
    float:left;
    width:100%;
    color:#000000;
    font-size:20px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left:35px;
    box-sizing:border-box;
    position:relative;
    margin-top:30px;
    margin-bottom:15px;
}
/* SEO: h1 wrapper for listing page title – no visual change */
.is-listing h1.listing-page-title {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
.top-title:before {
   position: absolute;
    content: "";
    left: 0;
    top: -6px;
    width: 33px;
    height: 33px;
    background: url(/box/img/logo-new.png) no-repeat center;
    background-size: 85%;
}
.sport-section .top-title:before{
   position: absolute;
    content: "";
    left: 0;
    top: -6px;
    width: 35px;
    height: 35px;
    background: url(/box/img/sport_title.svg) no-repeat center;
    background-size: 85%; 
}
.top-big-news {
    float:left;
    width:100%;
    display:flex;
    gap:10px;
}
.top-big-box {
    width:33.33%;
    float:left;
}
.big-news-image {
    float:left;
    width:100%;
    position: relative;
}
.big-news-image img.img {
    float:left;
    width:100%;
    min-height: 225px;
    object-fit:cover;
}
.big-news-image .ticket {
    position:absolute;
    top:0;
    left:0;
}
.big-news-image .play-btn {
    position:absolute;
    bottom:-10px;
    left:10px;
}
.big-news-title {
    float:left;
    width:100%;
    background: linear-gradient(0deg, #000000 90.83%, rgba(0, 0, 0, 0.00) 106.76%);
    color:#fff;
    padding:15px;
    box-sizing:border-box;
    font-family: "Playfair Display", serif;
    font-size:20px;
    min-height: 120px;
    overflow:hidden;
    position: relative;
    margin-top:-30px;
}
.big-news-title:hover {
    color:#FF8892;
}
.small-cats-news {
    float:left;
    width:100%;
    display:flex;
    gap:10px;
    margin-top:10px;
}
.small-cat-box {
    float:left;
    width:calc(18% - 10px);
    border:1px solid #EBEBEB;
    box-sizing:border-box;
}
.cat {
    float:left;
    width:100%;
    color:#EB1426;
    font-size:10px;
    font-weight: 700;
    text-transform:uppercase;
}
.small-cat-box img {
    float:left;
    width:100%;
    min-height: 140px;
    max-height: 140px;
    object-fit:cover;
}
.big-small-news {
    float:left;
    width:100%;
    display:flex;
    gap:10px;
}
.left-container {
    width:315px;
}
.left-container .top-big-box {
    width:100%;
}
.right-container {
    width:calc(100% - 315px);
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.right-container .small-cat-box {
    width:calc(33.33% - 7px);
}
.horizontal-banner {
    float:left;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:30px 0px;
}
.horizontal-banner a{
    width:720px;
    height: 300px;
    background: #D9D9D9;
    float:left;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.two-column-news {
    float:left;
    width:100%;
    display:flex;
    gap:10px;
}
.one-half-column {
    width:calc(50% - 10px);
}
.one-half-column .left-container {
    width:220px;
} 
.one-half-column .right-container {
    width:calc(100% - 220px);
}
.one-half-column .right-container .small-cat-box {
    width: calc(50% - 5px);

}
.bottom-info {
    float: left;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
.sport-section {
    float:left;
    width:100%;
    background: #4E5FF5;
    margin-top:30px;
    padding-bottom:30px;
    box-sizing:border-box;
}
.sport-section .top-title {
    color:#fff;
}
.sport-section .right-container .small-cat-box {
    background: #fff;
}
.sport-section .big-news-title {
    background: #1223C1;
}
.more-column-container {
    float:left;
    width:100%;
    display:flex;
    gap:10px;
    margin-top:30px;
}
.more-column-container .top-title {
    margin-top:15px;
}
.column-container {
    width:calc(25% - 10px);
    border:1px solid #EBEBEB;
}
.column-news {
    float:left;
    width:100%;
    display:flex;
    flex-direction:column;
    gap:10px;
    
}
.column-news .box {
    float:left;
    width:100%;
    display:flex;
    gap:10px;
}
.column-news .box .img {
    width:120px;
    float:left;
    flex-shrink:0;
}
.column-news .box .img img{
    width:100%;
    float:left;
    height: 90px;
    object-fit: cover;

}
.column-news .box .bottom-info {
    width:calc(100% - 120px);
    display:flex;
    flex-direction:column;
    padding:0px;
}
.column-news .box .bottom-info .cat{
    margin-top:0px;
    margin-bottom:0px;
}
.column-news .box .bottom-info .small-title {
    font-size:15px;
}
.right-box {
    float:left;
    width:100%;
}
.right-box-title {
    float:left;
    width:100%;
    margin-bottom:20px;
    position:relative;
}
.right-box-title:after {
    position: absolute;
    content:"";
    right:0;
    top:7px;
    width:100%;
    height: 1px;
    background: #EB1426;
    left:0%;
}
.right-box-title span {
    font-size:13px;
    font-weight: 700;
    color:#000000;
    text-transform: uppercase;
    position:relative;
    float:left;
    background: #fff;
    z-index:2;
}

.weather-wrap {
    float:left;
    width:100%;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.weather-box {
    width:calc(50% - 5px);
    border:1px solid #EBEBEB;
    display:flex;
    flex-direction:column;
    align-items: center;
    padding:15px;
    box-sizing:border-box;
}
.weather-box .city {
    font-size:12px;
    font-weight: 700;
    color:#000000;
}
.weather-box .date,.weather-box .day   {
    color:#000000;
    font-weight: 300;
    font-size:12px;
}
.weather-box .grad {
    color:#000000;
    font-size:24px;
    font-weight: 700;
}
.mt30 {
    margin-top:30px;
}
.right-box .all-news {
    float:left;
    width:100%;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.right-box .all-news .top-news-box {
    width:100%;
    border:1px solid #EBEBEB;
    position:relative;
    padding:15px;
    box-sizing:border-box; 
    padding-top:30px;
}
.right-box .all-news .top-news-box .ticket {
    position:absolute;
    top:0;
    left:0;
}
.right-banner {
    width:100%;
    height: 300px;
    background: #D9D9D9;
    float:left;
}
.is-listing .top-big-news{
    flex-wrap:wrap;
    display:flex;
}
.is-listing .top-big-box {
    width: calc(33% - 4px);
    float: left;
}
.is-listing .big-news-title {
    background: #fff;
    color:#000000;
} 
.is-listing .big-news-title:hover {
    color:#EB1426;
}
.is-listing .top-big-box {
    border:1px solid #EBEBEB;
    box-sizing:border-box;
} 
/* Pagination – listing, search, category, tema */
.pagination {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    padding-inline-start: 0;
    list-style: none;
    margin: 0;
}
.pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pagination li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pagination .page-item {
    float: left;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    background: #fff;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pagination .page-link {
    color: #000000;
    text-decoration: none;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}
.pagination .page-item.active {
    background: #cd0010;
    border-color: #cd0010;
}
.pagination .page-item.active .page-link {
    color: #fff;
}
.pagination .page-item:hover {
    background: #cd0010;
    border-color: #cd0010;
}
.pagination .page-item:hover .page-link {
    color: #fff;
}
/* Legacy / alternate markup: direct links with .page-number, .page-arrow */
.pagination .page-number,
.pagination .page-arrow {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    width: 34px;
    height: 34px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .page-arrow {
    padding: 0 8px;
    font-size: 18px;
    line-height: 1;
    width: auto;
    min-width: 34px;
}
.pagination .page-number.active,
.pagination a.page-number.active {
    background: #cd0010;
    border-color: #cd0010;
    color: #fff;
    font-weight: 600;
}
.pagination .page-number:hover,
.pagination .page-arrow:hover {
    background: #cd0010;
    border-color: #cd0010;
    color: #fff;
}
.top-view-part {
    float:left;
    width:100%;
    display:flex;
    align-items:center;
    margin-top:10px;
}
.view-title {
    float: left;
    width: 100%;
    text-align: left;
    margin:20px 0px;
    color:#000000;
    font-size:32px;
    line-height: 36px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}
.is-viweo-wrap {
    width: 100%;
    box-sizing: border-box;
    float: left;
}
.top-views-info {
    float:left;
    width:100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:10px;
    
}
.top-views-info .left {
    display:flex;
    gap:10px;
}
.top-views-info .left .bigger {
    font-size:12px;
    color:#000000;
    text-transform: uppercase;
    font-weight: 400;
    padding-left:20px;
    box-sizing:border-box;
    position:relative;
    border-right: 1px solid red;
    padding-right: 10px;
}
.top-views-info .left .smaller {
    font-size:12px;
    color:#000000;
    font-weight: 400;
}
.top-views-info .left .bigger:before {
    position:absolute;
    content:"";
    left:0;
    top:0;
    width:15px;
    height: 15px;
    background: url("../img/date_1.svg") no-repeat center;
    background-size:100%;
} 
.top-views-info .right {
    float:right;
    display:flex;
    gap:10px;
}
.top-views-info .right .copy {
    width:30px;
    height: 30px;
    float:left;
    background: url("../img/copi_link.svg") no-repeat center;
    background-size:100%;
}
.top-views-info .right .copy:hover {
    width:30px;
    height: 30px;
    float:left;
    background: url("../img/copi_link_hover.svg") no-repeat center;
    background-size:100%;
}
.top-views-info .right .share {
    width:30px;
    height: 30px;
    float:left;
    background: url("../img/share.svg") no-repeat center;
    background-size:100%;
}
.top-views-info .right .share:hover {
    width:30px;
    height: 30px;
    float:left;
    background: url("../img/share_hover.svg") no-repeat center;
    background-size:100%;
}
.is-img{
    float:left;
    width:100%;
    position:relative;
}
.is-img:before {
    position:absolute;
    content:"";
    left:50%;
    top:50%;
    width:40px;
    height: 40px;
    background:url("../img/play.svg") no-repeat center;
    background-size:100%;
    transform:translate(-50%, -50%);
}
.is-img img.img{
    float:left;
    width:100%;
}
.is-text-wrap {
    float:left;
    width:100%;
    display:flex;
    flex-direction:column;
    gap:20px;
    margin:20px 0px;
}
.is-text-wrap p {
    float:left;
    width:100%;
    font-size:16px;
    line-height: 22px;
    color:#000000;
}
.is-quote {
    float:left;
    width:100%;
    padding-left:40px;
    box-sizing:border-box;
    position:relative;
    margin: 30px 0px;
}
.is-quote:before {
    position:absolute;
    content:"";
    left:0;
    top:0;
    width:30px;
    height: 30px;
    background: url("/box/img/quote.svg") no-repeat center;
    background-size:100%;
} 
.is-quote p {
    float: left;
    width: 100%;
    font-style: italic;
    font-size: 16px;
    color: #000000;
    line-height: 22px;
}

/* blockquote: same look as .is-quote (e.g. from article description HTML) */
.is-text-wrap blockquote,
.left-column-container blockquote,
.is-view blockquote {
    float: left;
    width: 100%;
    padding-left: 40px;
    box-sizing: border-box;
    position: relative;
    margin: 30px 0;
    border: none;
    background: none;
}
.is-text-wrap blockquote::before,
.left-column-container blockquote::before,
.is-view blockquote::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: url("/box/img/quote.svg") no-repeat center;
    background-size: 100%;
}
.is-text-wrap blockquote p,
.is-text-wrap blockquote,
.left-column-container blockquote p,
.left-column-container blockquote,
.is-view blockquote p,
.is-view blockquote {
    font-style: italic;
    font-size: 16px;
    color: #000000;
    line-height: 22px;
}

.right-top-info {
    display:flex;
    flex-direction:column;
    gap:10px;
}
.right-top-info span.bigger {
    font-weight: 700;
    font-size:20px;
    color:#000000;
}
.right-top-info span.smaller {
    font-size:14px;
    color;#000000;
    font-weight:normal;
}
.social-wrap {
    float:left;
    width:100%;
    display:flex;;
    gap:10px;
    align-items:center;
}