@charset "UTF-8";
/* CSS Document */


         .playerwrapper-destaque {overflow: hidden;}
               

#destaqueTviPlayer{
                    position: relative;
                    width:100%;
                    background-color: red;
                    height:0px;

                }

             

               #destaqueTviPlayer .destaqueLink {
                    display:block;
                    background-color: rgba(0,0,0,0.8);
                    width:100%;
                    position: absolute;
                    top:-110px;
                    z-index:2;
                    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);

                    animation-name: show;
                    animation-duration: 120s;
                    animation-delay: 40s;
                    animation-iteration-count: 3;
				   


                }

                @media(min-width:769px) {
                    #destaqueTviPlayer .destaqueLink {
                        height: 90px;
                        border-radius: 45px;
                        max-width:340px;
                        right:10px;
                    }
                    #destaqueTviPlayer .title { 
                        height: 90px;
                        padding-right: 95px;
                    }

                    #destaqueTviPlayer .img-programa {
                        width:80px;
                        height:80px;
                    }

                    @keyframes show {
                        0%{top:-110px;}
                        1% {top:10px;}
                        10%{top:10px;}
                        11% {top:-110px;}
                        100% {top:-110px;}
                    }
                }

                @media(max-width:768px) {
                   #destaqueTviPlayer .destaqueLink {
                        height: 42px;
                        right:0px;
                    }

                   #destaqueTviPlayer .title { 
                        height: 42px;
                        padding-right: 69px;
                    }

                   #destaqueTviPlayer .img-programa {
                        width:54px;
                        height:54px;
                    }

                    @keyframes show {
                        0%{top:-110px;}
                        1% {top:0px;}
                        10%{top:0px;}
                        11% {top:-110px;}
                        100% {top:-110px;}
                    }
                }




                #destaqueTviPlayer .img-programa {

                    border-radius:50%;
                    float:right;
                    background-size: cover;
                    overflow: hidden;
                    background-position: center;

                    position: absolute;
                    right: 5px;
                    top:5px;

                }

                #destaqueTviPlayer .title-wrapper {
                    display: table;
                    width:100%;


                }

                #destaqueTviPlayer .title {
                    display:table-cell;

                    vertical-align: middle;
                    text-align: right;
                    width:100%;
                    color:#fff;
                    font-size:12px;

                }

                #destaqueTviPlayer h5 {
                    font-weight: 700;
                    color:#ffc000;
                    font-size:15px;
                }