<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */

.carousel .all {
    background: rgba(173, 3, 3, 0.74);
    display: none;
}

.content-full .bestof-title{
    font-size: 30px;
    color: #2f2f3a;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.vedi-tutto {margin-left: 10px; font-size: 14px;}
.vedi-tutto:after {content:""; display: inline-block; width: 0; height: 0; border-style: solid; border-width: 4px 0 4px 4px; border-color: transparent transparent transparent #e30031; margin-left: 5px;}

.showOnlyFree{
    color: #fff;
    font-size: 12px;
    background: #222;
    border: 1px solid #666;
    padding: 3px 6px;
    border-radius: 5px;
    font-family: 'Titillium Web', Arial, sans-serif;
    float:right;
    text-transform: uppercase;
}
.showOnlyFree:hover {
    border-color:  #999;
}
.showOnlyFree:active {
    background: black;
    border-color:  #999;
}

.showOnlyFree:focus {
    outline: none;
}


.box-stream-search {
    position: relative;
    padding: 20px;
    margin: 0 0 30px;
    /*background-image: linear-gradient(180deg, #353536 0%, #222222 100%);*/
    background-color:#222222;
    color: #fff;
    border-radius: 5px;
}
.box-stream-search .box-stream-title{
    float:left;
    margin-bottom: 20px;
    font-size:16px;
}
.canali-stream {
    width: 100%;
    display: block;
    padding: 0;
    overflow: hidden;
    margin-bottom: 20px;
}
.lista-canali-stream {
    width: 1000px;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 80px;
}
.item-canali-stream {
    display: block;
    float: left;
    margin: 0;
    transition: 1s;
    position:absolute;
    top:0;
    /* padding: 10px 0; */
}
.logo-canali-stream {
    width: 45px;
    height: 45px;
    display: block;
    border-radius: 50%;
    border: 2px solid #232222;
    overflow: hidden;
    margin: 0 18px 0 0;
    padding: 3px;
    opacity: .3;
}
.logo-canali-stream img{
    border-radius: 50%;
}
.logo-canali-stream:hover { opacity: 1; }
.list-item-select {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
}
.item-active {
    border: 2px solid red;
    opacity:1;
    padding: 3px;
}
.item-disable {
    opacity: 0.3;
}
.item-select {
    display: inline-block;
}
.select-stream {
    display: block;
    font-size: 12px;    
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    padding: .6em;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    border-radius: .3em;
    height:40px;
    width: 100%;
    min-width: 140px;
    text-transform: uppercase;
}
.select-stream::-ms-expand {
 display: block;
}
.select-stream:hover {
    border-color: #888;
}
.select-stream:focus {
    border-color: #aaa;
    color: #222;
}
.btn-stream {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    padding: 0.5em;
    box-sizing: border-box;
    margin: 0;
    text-shadow: 1px 1px #000;
    border: 2px solid #e30031;
    border-radius: .3em;
    background: -webkit-linear-gradient(top, #da1c2d, #b10110);
    min-width: 140px;
    cursor:pointer;
    font-family: 'Titillium Web', Arial, sans-serif;
}

.btn-stream:hover {
    border-color: #70030d;
    box-shadow: 0 1px 3px #620109 inset, 0 1px 0 rgba(255,255,255,.05);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b10110), to(#da1c2d));
    background: -webkit-linear-gradient(top, #b10110, #da1c2d);
}


.container_box {
    display: inline-block;
    position: relative;
    padding: 12px 15px 10px 15px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: uppercase;
    font-weight: 800;
    overflow: hidden;
    box-sizing: border-box;
    min-width: 130px;
    height: 40px;
    text-align: left;
}
/* Hide the browser's default checkbox    */
.container_box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 24%;
    right: 15px;
    height: 20px;
    width: 20px;
    bottom: 0;
    background-color: #444;
    border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.container_box:hover input ~ .checkmark {
    background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.container_box input:checked ~ .checkmark {
    background-color: #444;
}
.container_box .checkboxborder {
    position: absolute;top:0;right:0;left:0;bottom:0;border:2px solid #3e3e3e;
}
.container_box input:checked ~ .checkboxborder, .container_box input:hover ~ .checkboxborder { border-color: red; }
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.container_box input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.container_box .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* article */
.bestof-title {
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom:20px;
}
.bestof-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
}
.bestof-list h1 {
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E4E4E4;
    float: none;
}
.bestof-item {
    max-width: 300px;
    margin-bottom: 30px;
}
.bestof-list .bestof-item .contenuto {
    padding: 12px 0;
}
.bestof-list .bestof-item .contenuto h3 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 8px;
}
.bestof-list .bestof-item .contenuto h3 a {
    color: #2c2c2c;
}
.bestof-list .bestof-item figure {
    position: relative;
}
.bestof-list .bestof-item figure .channel {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 50%;
}

.free-channel {
    float: right;
    margin-top: -17px;
    padding-right: 0;
}

.carousel.streaming-logo-carousel .all:before {
    width: 26px;
    height: 40px;
    background: url(/public/images/sprites.png) 340px -366px;
}
.carousel.streaming-logo-carousel .all.prev:before {
    background-position: 390px -366px;
    left:15px;
}
.carousel.streaming-logo-carousel { height:60px; padding-bottom: 5px;}
.carousel.streaming-logo-carousel .all:before { top: 11px; margin: 0 0 0 -5px; }
.carousel.streaming-logo-carousel .all, .carousel.streaming-logo-carousel .all:hover { background-color:#222222;}

.content-streaming .sotto-menu-liste { margin-top: 0px; padding: 0; }


@media screen and (max-width: 767px){

    .list-item-select li:first-of-type{
        width:100%;
        padding:5px;
        margin-bottom:10px;
        display: flex;
        justify-content: space-evenly;
    }
    
    .item-select{
        width:46%;
        margin:5px;
    }
    
    .select-stream, .btn-stream, .container_box {
        width:100%;
        min-width:120px;
    }
    
    .container_box{
        width:49%;
        text-align:left;
    }

}</pre></body></html>