* {box-sizing:border-box;margin:0;padding:0; text-size-adjust: none}
html.no-scroll, html.no-scroll body {overflow:hidden !important}
body {font-family: 'Exo 2', sans-serif; min-height:100%;height:100%;-webkit-text-size-adjust: 100%;-webkit-tap-highlight-color:transparent; background-color: var(--ott-BE-dark-bg); overflow-x: hidden}
/*#wrapper {min-height:100%;position:relative}*/
#wrapper {
    contain: paint;
}
a {text-decoration: none; outline: 0}
a:not([href]) {cursor:default}
.centerer {max-width:1200px; width:100%; margin:0 auto;transition:all 0.3s;-webkit-transition:all 0.3s;-moz-transition:all 0.3s; position:relative}
ul {list-style: none}
section { font-size: 0}
:focus {outline:none;}
::-moz-focus-inner {border:0;}
button {
    background:transparent;
    border:none;
    outline:none;
}

/************************PRESET CLASSES************************/
.border-1 {border:1px red solid}
.float-l {float:left}
.float-r {float:right}
.text-center {text-align: center}
.margin-top-10 { margin-top: 10px}
.margin-top-20 { margin-top: 20px}
.margin-top-30 { margin-top: 30px}
.margin-top-40 { margin-top: 40px}
.margin-top-50 { margin-top: 50px}
.margin-auto {margin-left: auto; margin-right: auto}
.width-100 {width:100px}
.width-200 {width:200px}
.width-300 {width:300px}
.width-400 {width:400px}
.width-500 {width:500px}
.width-600 {width:600px}
.width-700 {width:700px}
.width-800 {width:800px}
.width-25per {width: 25%}
.width-50per {width: 50%}
.width-75per {width: 75%}
.width-100per {width: 100%}
.width-auto {width: auto}
.inline {display:inline-block}
.block {display: block}
.hidden {display: none}

/***********************CONSTANTS*********************************/
:root {
    --ott-black-overlay: rgba(0, 0, 0, 0.8);
    --ott-black-overlay-light: rgba(0, 0, 0, 0.2);
    --ott-modal-overlay: rgba(128, 128, 128, 0.4);
    --ott-modal-overlay-lightest: rgba(128, 128, 128, 0.05);;
    --ott-white: #fdfdfd;
    --ott-almost-white: #ededed;
    --ott-brown: #8197a4;
    --ott-disabled: #3a444a;
    --ott-link-blue: #79b8f3;
    --ott-link-blue-hover: #90dffe;
    --ott-link-white-hover: #d9ebfa;
    --ott-explore: #252E39;
    --ott-explore-hover: #354252;
    --ott-blue-play: #3ba0ff;
    --ott-transparent: rgba(255, 255, 255, 0);
    --ott-comment: #576169;
    --ott-btn-bg: rgba(144, 157, 166, 0.2);
    --ott-btn-bg-hover: rgba(59, 160, 255, 0.2);
    --ott-error-color: #ff3b3b;
    --ott-error-bg: rgba(255, 59, 59, 0.2);
    --ott-BE-menu: #283d4f;
    --ott-BE-menu-border: #2e4b63;
    --ott-BE-table-border: #142029;
    --ott-BE-dark-bg: #0F171E;
    --ott-BE-green: #13a149;
    --ott-BE-green-bg: rgba(19, 161, 73, 0.3);
    --ott-alert-color: #edcf5c;
    --ott-alert-bg: rgba(235, 194, 38, 0.2);

    --ott-see-more: "Vedi altri";
    --ott-list-edit: "Modifica lista";
    --ott-list-edit-end: "Fine";
    --ott-play-text: "Play";
    --ott-watch-later: "Guarda dopo";
    --ott-cross: "✕";
    --ott-BE-add-slide: "CLICCA o TRASCINA QUI LE SLIDE";
    --ott-BE-add-video: "CLICCA o TRASCINA QUI IL VIDEO";
    --ott-BE-add-thumb: "CLICCA o TRASCINA QUI LA PREVIEW";
    --ott-BE-slide-drop: "LASCIA IL MOUSE QUI PER INIZIARE L'UPLOAD";
    --ott-BE-uploaded-slides: "slide caricate";

    --ott-item-shadow: 0 0 5px 3px #111;
    /*--ott-item-shadow: 0 0 5px 3px red;*/
    /*--ott-item-lower-shadow: 0px 0 5px 3px green;*/
}
/************************HEADER STYLES****************************/
header {
    background-color: #1B242F;
    height: 80px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 12px 50px;
    font-size: 0;
    box-shadow: 7px 7px 3px 0px rgba(30,30,30,0.5);
}
header > *, #FEmainMenu li {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
}
#mainLogo {
    background-color: transparent;
    background-position: 0 0;
    background-repeat: no-repeat;
    width: 138px;
    height: 160px;
    background-size: cover;
    /*border: 1px red solid;*/
}
#FEmainMenu {
    margin-left: 30px;
    /*overflow-x: scroll;*/
    /*overflow-y: hidden;*/
    max-width: calc(100% - 110px);
    /*border: 1px red solid;*/
    /*margin-top: -7px;*/
}
#FEmainMenu li {
    padding: 10px 10px;
    margin-top: 7px;
    /*border:1px green solid*/
}
#FEmainMenu li:last-child {
    padding-right: 0 !important;
}
#FEmainMenu a {
    /*border:1px red solid;*/
    font-size: 16px;
    color: #fff;
    transition: color 0.25s;
    padding: 2px 0;
    font-weight: 600;
    position: relative;
}
@keyframes pulseLive {
    0% {
        transform: scale(0.95);
        color: white;
    }
    50% {
        transform: scale(1);
        color: red;
    }
    100% {
        transform: scale(0.95);
        color: white;
    }
}
#FEmainMenu a.live {
    animation: pulseLive 3s infinite;
    /*color: #f72840;*/
    /*text-shadow: 0 0 2px #fff;*/
    /*-webkit-text-stroke: 1px #b00015;*/
}
#FEmainMenu li a.live::before {
    position: relative;
    top:-1px;

}
#FEmainMenu li.active a::after, #FEmainMenu a:hover::after {
    content: "";
    width: 30px;
    left: 50%;
    margin-left: -15px;
    top: calc(100% + 2px);
    position: absolute;
    border: 1px white solid;
}
#FEmainMenu a:hover::after {
    border-color: #0065B3;
}

/*********************TOP CONTENT SLIDER**************************/
/*.blackOverlay {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    !*padding-bottom: 26%;*!*/
/*}*/
/*.blackOverlay::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top:0;*/
/*    left: 0;*/
/*    background-color: var(--ott-black-overlay);*/
/*    z-index: 1;*/
/*}*/
/*.ott-slide video {*/
/*    display: block;*/
/*    width: 100%;*/
/*    position: absolute;*/
/*    top:0;*/
/*    !*padding-top: 50%;*!*/
/*    !*transform: translateY(-50%);*!*/
/*}*/
/*.ott-slide .content {*/
/*    position: absolute;*/
/*    z-index: 2;*/
/*    font-size: 0;*/
/*    color: white;*/
/*}*/
.topSlider .cta.active {
    cursor: pointer;
}
.topSlider .cta {
    width: max(10%, 144px);
    padding: max(0.8%, 10px) 0;
    margin-left: min(-5%, -72px);
    position: absolute;
    z-index: 2;
    letter-spacing: 0.05em;
    border: 1px white solid;
    color: white;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    cursor: default;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s;
    background-color: rgba(255, 255, 255, 0.2);
}
.topSlider .cta:hover {
    background-color: rgba(255, 255, 255, 0.3);
}


/*.ott-slide .content h4 {*/
/*    line-height: 40px;*/
/*    width: 100%;*/
/*    font-size: 32px;*/
/*    color: white;*/
/*    opacity: .7;*/
/*    text-transform: uppercase;*/
/*    margin-top: 8px;*/
/*}*/
/*.ott-slide .content p:first-of-type {*/
/*    margin-top: 8px;*/
/*}*/
/*.ott-slide .content p {*/
/*    width: 100%;*/
/*    color: white;*/
/*    font-size: 16px;*/
/*    line-height: 28px;*/
/*    opacity: .9;*/
/*}*/
/*.ott-slide .content a {*/
/*    padding: 26px 114px 24px;*/
/*    background-color: rgba(255, 255, 255, .4);*/
/*    color: white;*/
/*    display: inline-block;*/
/*    margin: 32px auto 0;*/
/*    font-size: 14px;*/
/*    line-height: 14px;*/
/*    cursor: pointer;*/
/*    text-transform: uppercase;*/
/*}*/

/*************************GENERIC CONTENT SLIDER STYLES**************************/
main.content, main.channel {
    max-width: min(1600px, 96vw);
    margin: 0 auto;
    min-height: calc(100vh - 430px);
}
main.padded {
    margin-top: 150px;
}
.contentSlider {
    text-align: left;
    padding: 20px 0 7px;
    font-size: 0;
    position: relative;
}
.contentSlider h2 {
    color: var(--ott-white);
    font-weight: 700;
    font-size: 20px;
    margin-left:40px;
    display: inline-block;
    vertical-align: bottom;
    line-height: 20px;
    text-transform: uppercase;
}
.contentSlider > span {
    margin-left:50px;
    display: block;
    font-size: 14px;
    color: var(--ott-brown);
    font-weight: 500;
    overflow: visible;
    height: 0;
}
.csWrapper {
    position: relative;
    z-index: 1;
    margin-top: 10px;
}
.csWrapper:hover {
    z-index: 2;
}
.csEdit, .csSeeMore {
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin-left: 20px;
    color: var(--ott-link-blue);
    vertical-align: middle;
}
.csEdit:hover, .csSeeMore:hover {
    cursor: pointer !important;
    color: var(--ott-link-blue-hover);
}
.csSeeMore::after {
    content: var(--ott-see-more);
}
.csEdit::after {
    content: var(--ott-list-edit);
}
.csEdit.editState:after {
    content: var(--ott-list-edit-end);
}
.csEdit.editState ~ .csWrapper .owl-item {
    pointer-events: none;
}
.csEdit.editState ~ .csWrapper .owl-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 10.5px);
    height: 100%;
    z-index: 4;
    font-size: 20px;
    background-color: var(--ott-black-overlay);
}
.csEdit.editState ~ .csWrapper .owl-item:before {
    content: "";
    background-image: url('../imgs/remove.svg');
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    z-index:5;
    border-radius: 50px;
    cursor: pointer;
    pointer-events: all;
    opacity: 1;
    transition: opacity .3s;
}
.csEdit.editState ~ .csWrapper .owl-item:hover:before {
    opacity: 0.6;
}
.csItem {
    display: inline-block;
    border-radius: 2%;
    position: relative;
    vertical-align: top;
    z-index: 1;
    cursor: pointer;
}
/*.csItem.live:not(.live-on) {*/
/*    filter: grayscale(100%);*/
/*}*/
.csItem:hover {
    z-index: 2;
}
.csItem .vsItemUpper, .csExplore .vsItemUpper {
    width: 100%;
    padding-bottom: 140%;
    background-size: cover !important;
}


/************************VIDEO CONTENT SLIDER STYLES****************************/
.vsItemUpper {
    height: 0;
    border-radius: inherit;
    transition: all 0s;
    transform-origin: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
    z-index: 1;
    display: block;
    position: relative;
    cursor: default;
}
.vsItemUpper .mobilePlay {
    width: 100%;
    padding-bottom: 140%;
    display: none;
}
.csItem:hover .vsItemUpper .label {
    display: none;
}
.csItem.live .vsItemUpper .label {
    width: 90px;
    height: 90px;
    text-align: center;
    border-color: transparent;
    transform: translate(50%, 50%) rotate(-45deg);
    /*transform: translate(-50%, 50%) rotate(45deg);*/
    transform-origin: 50%;
    border-top-color: #666666;
    border-width: 20px;
    border-style: solid;
    color: white;
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 100%;
}
.csItem.live .vsItemUpper .label::after {
    content: "OFFLINE";
    font-size: 10px;
    display: inline-block;
    line-height: 20px;
    transform: translateY(-20px);
    /*border: 1px blue solid;*/
}
.csItem.live.live-on .vsItemUpper .label::after {
    content: "LIVE";
}
.csItem.live.test-on .vsItemUpper .label::after {
    content: "TEST";
}
/*.csItem.live .vsItemUpper .label {*/
/*    padding: 2px 0 4px;*/
/*    width: 50px;*/
/*    text-align: center;*/
/*    transform: translateX(14.5px) rotate(-45deg);*/
/*    transform-origin: 0% 100%;*/
/*    background-color: #666666;*/
/*    color: white;*/
/*    font-size: 15px;*/
/*    position: absolute;*/
/*    bottom: 0px;*/
/*    right: -1px;*/
/*    line-height: 100%;*/
/*}*/
.csItem.live.live-on .vsItemUpper .label {
    /*background-color: red;*/
    border-top-color: red;
}
.csItem.live.test-on .vsItemUpper .label {
    border-top-color: #0089CD;
}
/*.csItem.live .vsItemUpper .label::before, .csItem.live .vsItemUpper .label::after {*/
/*    content: "";*/
/*    font-size: 5px;*/
/*    border-style: solid;*/
/*    position: absolute;*/
/*    top: 0;*/
/*}*/
/*.csItem.live .vsItemUpper .label::before {*/
/*    border-width: 18px 18px 18px 18px;*/
/*    !*transform: rotate(-45deg);*!*/
/*    !*border-color: #666666 #666666 transparent transparent;*!*/
/*    border-color: red blue green white;*/
/*    right: calc(100% - 1px);*/
/*}*/
/*.csItem.live .vsItemUpper .label::after {*/
/*    border-color: #666666 transparent transparent #666666;*/
/*    left: calc(100% - 1px);*/
/*}*/
/*.csItem.live.live-on .vsItemUpper .label::before {*/
/*    border-color: red red transparent transparent;*/
/*}*/
/*.csItem.live.live-on .vsItemUpper .label::after {*/
/*    border-color: red transparent transparent red;*/
/*}*/
.csExplore {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    color: var(--ott-white);
    background-color: var(--ott-explore);
    transition: background-color .3s;
    border-radius: 3px;
}
.csExplore:hover {
    background-color: var(--ott-explore-hover);
}
.csExplore::after {
    font-size: 15px;
    content: "Esplora";
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.vsItemLower {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 2;
    transition: opacity .1s;
    padding-bottom: 80%;
    border-radius: 0 0 5px 5px;
    /*height: 70%;*/
    /*transition-delay: .15s;*/
}
.vsItemLower .gradient {
    width: 100%;
    position: absolute;
    top:-40px;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(rgba(27, 37, 48, 0), #1b2530 48px);
    padding: 45px 15px 0;
    border-radius: inherit;
    /*border:1px green solid;*/
}
/*.csItem.live .vsItemLower .gradient {*/
/*    background: linear-gradient(rgba(27, 37, 48, 0), #ca0000 48px) !important;*/
/*}*/
.vsItemLower h3 {
    color: var(--ott-white);
    font-size: 12px;
    margin-top: 10px;
    font-weight: 600;
    line-height: 13px;
    max-height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /*border:1px yellow solid;*/
}


.vsItemLower p {
    /*border: 1px blue solid;*/
    color: var(--ott-white);
    font-size: 10px;
    line-height: 13px;
    margin-top: min(10px, 0.4vw);
    /*max-height: 95px;*/
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    width: 100%;
    -webkit-line-clamp: 6;
    text-overflow: ellipsis;
}
.vsItemMeta {
    position: absolute;
    bottom: min(10px, 0.7vw);
    /*border: 1px yellow solid;*/
    font-size: 9px;
    color: var(--ott-brown);
    line-height: 18px;
}
.vsItemMeta .dur:before {
    content: "\f017";
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-right: 5px;
    float: left;
}
/*.vsItemLower .gradient > span {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    display: inline-block;*/
/*    position: absolute;*/
/*    top:53px;*/
/*    right: 25px;*/
/*    cursor: pointer;*/
/*}*/
/*.vsItemLower .gradient > span svg {*/
/*    fill: var(--ott-white);*/
/*    transition: fill .15s;*/
/*}*/
/*.vsItemLower .gradient > span:hover svg {*/
/*    fill: var(--ott-blue-play);*/
/*}*/
/*.vsItemLower .gradient > span::after {*/
/*    content: var(--ott-watch-later);*/
/*    text-transform: uppercase;*/
/*    font-size: 13px;*/
/*    font-weight: 600;*/
/*    display: inline-block;*/
/*    width: auto;*/
/*    white-space: nowrap;*/
/*    padding: 5px 8px;*/
/*    background-color: var(--ott-explore-hover);*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    opacity: 0;*/
/*    transform: translate(-50%, -100%) translateY(-12px);*/
/*    transition: opacity .15s, transform .15s;*/
/*    box-shadow: 0 0 20px 2px #1c1c1c;*/
/*    border-radius: 3px;*/
/*    z-index: 1;*/
/*}*/
/*.vsItemLower .gradient > span::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -12px);*/
/*    border-top: 5px var(--ott-explore-hover) solid;*/
/*    border-left: 8px  transparent solid;*/
/*    border-right: 8px  transparent solid;*/
/*    height: 10px;*/
/*    opacity: 0;*/
/*    transition: opacity .15s, transform .15s;*/
/*    z-index: 2;*/
/*}*/
/*.vsItemLower .gradient > span:hover::before {*/
/*    transform: translate(-50%, -6px);*/
/*    opacity: 1;*/
/*}*/
/*.vsItemLower .gradient > span:hover::after {*/
/*    transform: translate(-50%, -100%) translateY(-6px);*/
/*    opacity: 1;*/
/*}*/
.vsItemPlay {
    width: 26px;
    display: block;
    position: relative;
    cursor: pointer !important;
}
.csItem.live .vsItemPlay {
    cursor: default !important;
    opacity: 0.2;
}
.vsItemPlay svg {
    stroke-linejoin: round;
    stroke-linecap: round;
    fill: none;
}
.vsItemPlay circle {
    fill: var(--ott-black-overlay);
    stroke: var(--ott-white);
    stroke-width: 2;
}
.vsItemPlay:hover circle, .csItem.live.live-on .vsItemPlay:hover circle, .csItem.live.test-on .vsItemPlay:hover circle {
    fill: var(--ott-blue-play);
    stroke: hsla(0,0%, 100%, 0);
}
.csItem.live.live-on .vsItemPlay, .csItem.live.test-on .vsItemPlay {
    opacity: 1;
    cursor: pointer !important;
}
.csItem.live.live-on .vsItemPlay circle, .csItem.live.test-on .vsItemPlay circle {
    transition: fill .3s,stroke .3s;
}
.csItem.live .vsItemPlay:hover circle {
    fill: var(--ott-black-overlay);
    stroke: var(--ott-white);
}
.csItem.live.live-on .vsItemPlay:hover circle {
    fill: var(--ott-error-color);
}
.csItem.live.test-on .vsItemPlay:hover circle {
    fill: var(--ott-blue-play);
}
.vsItemPlay path {
    fill: var(--ott-white)
}
.vsItemPlay::after {
    content: var(--ott-play-text);
    color: var(--ott-white);
    font-size: 12px;
    font-weight: 700;
    display: block;
    position: absolute;
    top:0;
    line-height: 26px;
    left: 100%;
    padding-left: 8px;

}
.owl-carousel .owl-stage:not(.isTranslating) .csItem:hover .vsItemLower {
    opacity: 1;
    visibility: visible;
}
.csWrapper .splide__track:not(:hover) {
    animation: .8s delay-overflow;
}
@keyframes delay-overflow {
    from { overflow: visible; }
}
.csWrapper .splide__track:hover {
    overflow: visible;
}

/************************VIDEO CONTENT SLIDER STYLES****************************/
.linkSlider .owl-stage-outer {
    overflow:  visible;
}
.linkSlider .csItem {
    background-size: cover;
    width: 100%;
    padding-bottom: 140%;
    border-radius: 3px;
    transition: transform .3s, box-shadow .3s;
    color: var(--ott-white);
}
.linkSlider .csItem::after {
    content: "";
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: var(--ott-black-overlay);
    z-index: 1;
    transition: background-color 0.3s;
}
.linkSlider .csItem.noTitle::after {
    display: none
}
.linkSlider .csItem:hover, .linkGallery .csItem:hover {
    transform: scale(1.1);
    box-shadow: var(--ott-item-shadow)
}
.linkSlider .csItem:hover::after {
    background-color: var(--ott-black-overlay-light);
}
.linkSlider h3 {
    font-size: 17px;
    margin-top: 12px;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
}

/**********************************MODAL OVERLAY**************************/
.overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 100;
    top:0;
    left:0;
    bottom: 0;
    right: 0;
    background-color: var(--ott-modal-overlay);
    opacity: 0;
    transition: opacity .25s;
}
.overlay.visible {
    opacity: 1;
}
.overlay .window {
    position: relative;
    top:50%;
    left:50%;
    background-color: var(--ott-BE-dark-bg);
    transform: translateX(-50%) translateY(-50%);
    border: 1px var(--ott-explore) solid;
    box-shadow: 3px 4px 4px -1px rgba(50,50,50,1);
    display: inline-block;
}
.window > h3 {
    border-bottom: 1px var(--ott-BE-table-border) solid;
    color: var(--ott-brown);
    font-size: 14px;
    padding: 3px 8px;
    text-align: left;
    font-weight: 400;
}
.window > div {
    padding: 30px;
}
.window > span.close  {
    color: var(--ott-white);
    position: absolute;
    right: 0;
    top: 0;
    padding: 2px 8px;
    font-size: 14px;
    cursor: pointer;
    transition: color .25s;
}
.window > span::after {
    content: var(--ott-cross);
}
.window > span:hover {
    color: var(--ott-brown);
}
.window .container {
    vertical-align: top;
}
.window .container.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 25px);
    grid-gap: 3px;
    grid-auto-flow: column;
}
.window p.text {
    color: var(--ott-brown);
    line-height: 120%;
}
.window p.text .hScroll {
    max-width: 90%;
    display: inline-block;
    vertical-align: bottom;
}
.window p.text .hScroll > span {
    top: 0;
}
.window p.text span {
    color: var(--ott-link-blue);
    margin-right: 3px;
}
/******************************VIDEO PLAYER**********************************/
#OTTPlayer {
    position: fixed;
    top:0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background-color: black;
}
#plClose {
    position: absolute;
    top:30px;
    right: 40px;
    color: #f2f2f2;
    font-size: 32px;
    font-style: normal;
    line-height: 100%;
    cursor: pointer;
    transition: all .25s;
    z-index: 2;
}
.fullscreen #plClose.offScreen {
    transform: translateY(-200%);
}
#plClose:hover {
    color: #666666;
}
#plClose::after {
    content: var(--ott-cross);
}
.cGallery {
    width: 100%;
    font-size: 0;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, 250px);
}
.cGallery .csItem:hover {
    z-index: 2;
}
.cGallery .csItem:hover .vsItemUpper  {
    transform: scale(1.3);
    box-shadow: var(--ott-item-shadow);
    transition: all .15s;
}
.cGallery .csItem:hover .vsItemLower {
    opacity: 1;
    visibility: visible;
}
.linkGallery .csItem {
    background-size: cover;
    width: 100%;
    padding-bottom: 141.428571%;
    border-radius: 3px;
    transition: transform .3s, box-shadow .3s;
    color: var(--ott-white);
}

@media screen and (max-width: 1692px) {
    main.content, main.channel {
        width: 94.5626477vw !important;
    }
    .breadcrumbs.forContent {
        width: 100% !important;
    }
    .cGallery {
        width: 100% !important;
        grid-gap: min(calc((94.5626477vw - 1260px)/5), 1.3vw) !important;
        grid-template-columns: repeat(auto-fill, minmax(210px,14.67710795vw)) !important;
    }
}
@media screen and (max-width: 1412px) {
    header {
        height: 50px;
    }
    #mainLogo {
        min-width: 50px;
        min-height: 4.64vw;
        width: 7vw !important;
        height: 8.12vw !important;
    }
    #FEmainMenu li {
        padding: 0 20px !important;
        margin-top: 5px !important;
    }
    #FEmainMenu li.active a::after, #FEmainMenu a:hover::after {
        top: 100%;
    }
    #FEmainMenu a {
        font-size: 14px !important;
    }
    main.content, main.channel {
        width: 93.5626477vw !important;
    }
    .breadcrumbs a {
        margin-right: 35px !important;
    }
    .breadcrumbs a, .breadcrumbs h1 {
        font-size: 25px !important;
    }
    .breadcrumbs a::after {
        left: calc(100% + 10px) !important;
        line-height: 32px !important;
    }
    .splide__slide.alg-left {
        background-position: 0 0 !important;
    }
    .plWrapper .playlist:hover > p::after {
        transform: scale(1.2) !important;
    }
    .cGallery {
        grid-gap: min(calc((93.5626477vw - 1050px)/4), 1.3vw) !important;
        grid-template-columns: repeat(auto-fill, minmax(210px,17.67252954vw)) !important;
    }
}
@media screen and (max-width: 1300px) {
    main.channel, main.padded {
        margin-top: 100px !important;
    }
    .plWrapper .playlist:hover > p::after {
        transform: scale(1.1) !important;
    }
    .plWrapper .playlist > p {
        padding-top: 17vw !important;
    }
    .vsItemLower h3 {
        font-size: 11px !important;
    }
}
@media screen and (max-width: 1186px) {
    main.content, main.channel {
        width: 92vw !important;
    }
    .cGallery {
        grid-gap: min(calc((92vw - 840px)/3), 1.3vw) !important;
        grid-template-columns: repeat(auto-fill, minmax(210px, 22.025vw)) !important;
    }
}
@media screen and (max-width: 1100px) {
    .plWrapper .playlist > span::before {
        font-size: 1.5vw !important;
    }
    .plWrapper .playlist > p {
        font-size: 1.5vw !important;
        line-height: 1.8vw !important;
        padding: 17.5vw 6vw 0 !important;
    }
}
@media screen and (max-width: 1023px) {
    .plWrapper .playlist > p {
        padding-top: 18vw !important;
    }
    .breadcrumbs a {
        margin-right: 30px !important;
    }
    .breadcrumbs a, .breadcrumbs h1 {
        font-size: 20px !important;
    }
    .breadcrumbs a::after {
        line-height: 26px !important;
    }
    main.content, main.channel {
        width: 94vw !important;
    }
    .cGallery {
        grid-gap: min(calc((94vw - 840px)/3), 1.3vw) !important;
        grid-template-columns: repeat(auto-fill, minmax(210px, 22.525vw)) !important;
    }
    .cGallery .csItem:hover .vsItemUpper {
        transform: scale(1.2) !important;
    }
}
@media screen and (max-width: 930px) {
    main.content, main.channel {
        width: 92vw !important;
    }
    .cGallery {
        grid-gap: min(calc((92vw - 420px)/2), 2vw) !important;
        grid-template-columns: repeat(auto-fill, minmax(210px,29.333333333333vw)) !important;
    }
    .vsItemLower h3 {
        font-size: 13px !important;
    }
    .vsItemLower p {
        font-size: 11px !important;
        margin-top: 10px !important;
    }
    .vsItemMeta {
        bottom: 15px !important;
    }
}
@media screen and (max-width: 840px) {
    main.padded {
        margin-top: 50px !important;
    }
    .plWrapper .playlist {
        width: 50% !important;
    }
    .plWrapper .playlist > span::before {
        font-size: 3vw !important;
        padding-top: 10vw !important;
    }
    .plWrapper .playlist > p {
        font-size: 4vw !important;
        padding: 33vw 7vw 0 !important;
        line-height: 4.2vw !important;
    }
}
@media screen and (max-width: 760px) {
    header {
        padding-right: 0 !important;
        white-space: nowrap;
    }
    #mainLogo {
        width: 54px !important;
        height: 62px !important;
    }
    @media (hover: hover) {
        .breadcrumbs > * > span:first-child {
            display: initial !important;
        }
        .breadcrumbs > * > span:last-child {
            display: none !important;
        }
    }
    main.content, main.channel {
        width: 95vw !important;
    }
    .cGallery {
        grid-gap: min(calc((95vw - 420px)/2), 1.3vw) !important;
        grid-template-columns: repeat(auto-fill, minmax(210px,30.8vw)) !important;
    }
    .cGallery .csItem:hover .vsItemUpper {
        transform: scale(1.1) !important;
    }
    .vsItemLower h3 {
        font-size: 12px !important;
    }
    .vsItemLower p {
        font-size: 10px !important;
        margin-top: min(10px, 0.4vw) !important;
    }
    .vsItemMeta {
        bottom: min(10px, 0.7vw) !important;
    }
}
@media screen and (max-width: 682px) {
    main.content, main.channel {
        width: 88vw !important;
    }
    .cGallery {
        grid-gap: min(calc(88vw - 210px), 3vw) !important;
        grid-template-columns: repeat(auto-fill, minmax(210px,42.5vw)) !important;
    }
    .vsItemLower h3 {
        font-size: 13px !important;
        margin-top: 15px !important;
    }
    .vsItemLower p {
        font-size: 11px !important;
        line-height: 16px !important;
        margin-top: 10px !important;
    }
    .vsItemMeta {
        bottom: 15px !important;
    }
}
@media screen and (max-width: 540px) {
    header {
        padding-left: 30px !important;
    }
    .splide__slide.alg-left .cta {
        transform: translateX(-28.6px);
    }
    /*main.channel, main.content {*/
    /*    width: 100% !important;*/
    /*}*/
    /*.breadcrumbs {*/
    /*    padding-left: 15px !important;*/
    /*}*/
    .plWrapper .playlist > p::after {
        margin-top: -25px !important;
        margin-left: -25px !important;
        width: 50px !important;
        height: 55px !important;
    }
    .plWrapper .playlist:hover > p::after {
        transform: none !important;
    }
    .plWrapper .playlist > p {
        font-size: 3.3vw !important;
        padding: 35vw 10vw 0 !important;
        line-height: 3.5vw !important;
    }
    .vsItemLower h3 {
        font-size: 12px !important;
    }
    .vsItemLower p {
        font-size: 10px !important;
        margin-top: min(10px, 0.4vw) !important;
        line-height: 13px !important;
    }
    .vsItemMeta {
        bottom: min(10px, 1.5vw) !important;
    }
}
@media screen and (max-width: 494px) {
    .breadcrumbs.forContent {
        margin-bottom: 2vw !important;
    }
    main.content, main.channel {
        width: 94vw !important;
    }
    .cGallery {
        grid-gap: min(calc(94vw - 210px), 2vw) !important;
        grid-template-columns: repeat(auto-fill, minmax(210px,46vw)) !important;
    }
}
@media screen and (max-width: 458px) {
    .splide__slide.alg-left {
        background-position: calc(50% + 380px) 0 !important;
    }
    .splide__slide.alg-left .cta {
        transform: translateX(-50%) translateX(50vw) translateX(-193px);
    }
    .cGallery {
        grid-gap: min(calc(94vw - 200px), 2vw) !important;
        grid-template-columns: repeat(auto-fill, minmax(200px,46vw)) !important;
    }
    .vsItemLower .gradient {
        padding: 45px 10px 0 !important;
    }
    .vsItemLower h3 {
        margin-top: 10px !important;
    }
}
@media screen and (max-width: 436px) {
    main.content, main.channel {
        width: 80vw !important;
    }
    .cGallery {
        row-gap: 4vw !important;
        grid-template-columns: repeat(auto-fill, minmax(200px,80vw)) !important;
    }
    .vsItemLower .gradient {
        padding: 45px 20px 0 !important;
    }
    .vsItemLower h3 {
        font-size: 16px !important;
        margin-top: 25px !important;
    }
    .vsItemLower p {
        font-size: 14px !important;
        line-height: 18px !important;
        margin-top: 10px !important;
    }
    .vsItemMeta {
        bottom: 15px !important;
    }
}
@media screen and (max-width: 360px) {
    .breadcrumbs.forContent {
        margin-bottom: 4vw !important;
    }
    .vsItemLower h3 {
        font-size: 12px !important;
        margin-top: 15px !important;
    }
    .vsItemLower p {
        font-size: 10px !important;
        margin-top: min(10px, 0.4vw) !important;
        line-height: 13px !important;
    }
    .vsItemMeta {
        bottom: min(10px, 1.5vw) !important;
    }
}





/*@media (-webkit-device-pixel-ratio: 2) {*/
/*    .csItem.live .vsItemUpper .label {*/
/*        padding: 2px 0 4px;*/
/*        width: 50px;*/
/*        transform: translateX(14.5px) rotate(-45deg);*/
/*        font-size: 15px;*/
/*    }*/
/*    .csItem.live .vsItemUpper .label::before, .csItem.live .vsItemUpper .label::after {*/
/*        font-size: 5px;*/
/*        border-width: 11px;*/
/*    }*/
/*    .csItem.live .vsItemUpper .label::before {*/
/*        right: calc(100% - 1px);*/
/*    }*/
/*    .csItem.live .vsItemUpper .label::after {*/
/*        left: calc(100% - 1px);*/
/*    }*/
/*}*/
@media (-webkit-device-pixel-ratio: 2) {
    footer a {
        width: 80px !important;
        height: 27px !important;
    }
    footer p {
        font-size: 12px !important;
    }
    .csItem.live .vsItemUpper .label {
        /*transform: translate(-50%, 50%) scale(0.7) rotate(45deg);*/
        transform: translate(50%, 50%) scale(0.7) rotate(-45deg);
    }
}
@media (-webkit-device-pixel-ratio: 3) {
    footer a {
        width: 100px !important;
        height: 33px !important;
    }
    footer p {
        font-size: 12px !important;
    }
    .csItem.live .vsItemUpper .label {
        /*transform: translate(-50%, 50%) scale(0.7) rotate(45deg);*/
        transform: translate(50%, 50%) scale(0.7) rotate(-45deg);
    }
}
@media (hover: none) and (pointer: coarse) {
    .vsItemUpper .mobilePlay {
        display: block !important;
    }
    .linkSlider .csItem:hover, .cGallery .csItem:hover, .cGallery .csItem:hover .vsItemUpper, .plWrapper .playlist:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    .csItem:hover .vsItemUpper .label {
        display: block !important;
    }
    /*.csItem.live:not(.live-on) {*/
    /*    opacity: 0.5;*/
    /*}*/
    .cGallery .vsItemLower {
        display: none !important;
    }
    .contentSlider h2 {
        margin-left: 15px !important;
    }
    .splide__arrows {
        display: none !important;
    }
    .csWrapper .splide__track {
        padding-left: 0 !important;
    }
    .csWrapper .splide__track:hover {
        overflow: hidden;
    }
    @media screen and (max-width: 760px) {
        .breadcrumbs {
            padding-left: 15px !important;
            width: 100vw !important;
        }
        .breadcrumbs a::after {
            left: calc(100% + 9px) !important;
        }
        main.content, main.channel {
            max-width: 100vw !important;
            width: 100vw !important;
        }
        .cGallery {
            width: 100vw !important;
            grid-gap: 1.2vw !important;
            grid-template-columns: repeat(auto-fill, 19.04vw) !important;
        }
        .csExplore::after {
            font-size: 3vw !important;
        }
        .splide__pagination__page {
            width: 6px !important;
            height: 6px !important;
        }
    }
    @media screen and (max-width: 540px) {
        .breadcrumbs > * > span:first-child {
            display: initial !important;
        }
        .breadcrumbs > * > span:last-child {
            display: none !important;
        }
    }
    @media screen and (max-width: 470px) {
        .breadcrumbs a {
            margin-right: 23px !important;
        }
        .breadcrumbs a, .breadcrumbs h1 {
            font-size: 17px !important;
        }
        .breadcrumbs a::after {
            left: calc(100% + 6px) !important;
            line-height: 22px !important;
        }
        .cGallery {
            grid-gap: 2vw !important;
            grid-template-columns: repeat(auto-fill, 32vw) !important;
        }
    }
    @media screen and (max-width: 350px) {
        .cGallery {
            grid-template-columns: repeat(auto-fill, 49vw) !important;
        }
    }
}

/******************************CHANNEL PAGE LAYOUT**********************************/
/*.channel h1 {*/
/*    color: var(--ott-white);*/
/*    font-size: 30px;*/
/*    font-weight: 500;*/
/*    !*border: 1px red solid;*!*/
/*    padding: 10px 0;*/
/*    border-bottom: 1px var(--ott-white) solid;*/
/*}*/
.breadcrumbs {
    display: inline-block;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px var(--ott-white) solid;
}
.breadcrumbs.forChannel {
    margin-left: 40px;
}
.breadcrumbs.forContent {
    margin-bottom: 20px;
    width: 100%;
}
.breadcrumbs a, .breadcrumbs h1 {
    color: var(--ott-white);
    display: inline;
    font-size: 30px;
}
.breadcrumbs a {
    position: relative;
    line-height: 20px;
    transition: color .2s;
    margin-right: 50px;
}
.breadcrumbs > * > span:first-child {
    display: none;
}
.breadcrumbs a:hover {
    color: #0065B3
}
.breadcrumbs a::after {
    content: ">>";
    position: absolute;
    left:calc(100% + 15px);
    pointer-events: none;
    font-family: 'Advent Pro', sans-serif;
    color: var(--ott-white) !important;
    /*border: 1px red solid;*/
    line-height: 37px;
    transition-duration: 0s;
}
.plWrapper {
    width: 100%;
    font-size: 0;
}
.plWrapper .playlist {
    display: inline-block;
    width: 25%;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 3;
}
.plWrapper .playlist > div {
    padding-bottom: 100%;
    background-size: 100%;
    position: relative;
}
.plWrapper .playlist > p, .plWrapper .playlist > span, .plWrapper .playlist > span::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    /*padding-bottom: 100%;*/
}
.plWrapper .playlist > p {
    font-size: 2vw;
    padding: 16vw 3.5vw 0;
    line-height: 2.2vw;
    z-index: 2;
}
.plWrapper .playlist > span {
    z-index: 1;
    opacity: 0;
    transition: opacity .3s;
}
.plWrapper .playlist > span::before {
    content: "view the playlist";
    font-size: 24px;
    font-weight: 300;
    padding-top: 4vw;
    box-sizing: border-box;
}
.plWrapper .playlist:hover > span {
    opacity: 1;
}
.plWrapper .playlist.disabled > span::before {
    content: "coming soon!";
    font-weight: 600;
}
/*.plWrapper .playlist > p:hover::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background-color: green;*/
/*    border: 1px green solid;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: -1;*/

/*}*/
.plWrapper .playlist > p::after {
    content: url(imgs/play.svg);
    position: absolute;
    top:50%;
    left: 50%;
    margin-top: -33px;
    margin-left: -33px;
    width: 66px;
    height: 66px;
    transition: transform 0.3s;
    z-index: 1;
}
.plWrapper .playlist:hover {
    transform: scale(1.05);
    z-index: 4;
    box-shadow: 15px 15px 2px 0px rgba(0,0,0,0.75);
    cursor: pointer;
}
.plWrapper .playlist:hover > p::after {
    transform: scale(1.3);
}

.contentSlider {
    /*border: 1px red solid !important;*/
}
.csWrapper {
    /*border: 1px green solid !important;*/
}
.csWrapper .owl-stage-outer {
    /*border: 1px yellow solid !important;*/
    overflow: hidden;
}

.splide__slide {
    text-align: center;
}
.splide__slide > img {
    width: 100%
}
.contentSlider .splide__arrow {
    background-color: #000;
    opacity: 0.6;
    width: 30px;
    transition: opacity .3s;
}
.contentSlider .splide__arrow:hover {
    opacity: 0.9;
}
.contentSlider .splide__arrow--next {
    right: 0
}
.contentSlider .splide__arrow--prev {
    left: 0;
}
.contentSlider .splide__arrow:disabled {
    display: none;
}

main.live-content {
    padding-top: 20px;
}
.csItem.live.live-on .vsItemMeta span::before, #FEmainMenu li a.live::before, .csItem.live.test-on .vsItemMeta span::before {
    content: "";
    background-color: red;
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    animation: pulse-red 2s infinite, opacityPulse 2s ease-out;
    animation-iteration-count: infinite;
    border-radius: 10px;
}
.csItem.live.live-on .vsItemMeta span::after, .csItem.live.test-on .vsItemMeta span::after {
    content: "ON AIR";
    color: red;
    font-size: 10px;
    line-height: 17px;
    display: inline-block;
    font-weight: 600;
    vertical-align: middle;
    margin-right: 5px;
    letter-spacing: 1px;
}
.csItem.live.live-on.on, .csItem.live.test-on.on {
    animation: bounceUp 0.6s;
}
.csItem.live.post {
    animation: bounceUp 0.6s;
    transition: opacity 0.6s;
    opacity: 1;
}
.csItem.live.pre {
    opacity: 0;
}
@keyframes bounceUp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}
@keyframes opacityPulse {
    0% {opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {opacity: 0.0;}
}
footer {
    margin-top: 30px;
    width: 100%;
    height: 90px;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -15%;
    width: 30%;
    border-top:1px #5C5C5C solid;
}
footer a {
    width: 120px;
    height: 40px;
    margin: 20px auto 10px;
    display: block;
    background: transparent url("/css/default/imgs/logo.png") 0 0 no-repeat;
    background-size: 100% auto;
}
footer p {
    width: 100%;
    text-align: center;
    color: var(--ott-white);
    font-size: 15px;
    font-weight: 300;
}