/*

Theme Name:         TV Agile
Theme URI:          https://tv.agenciaagile.com.br/
Description:        TV Corporativa Agile
Version:            1.0
Author:             Agência Agile
Author URI:         https://www.agenciaagile.com.br/

*/

@import url('css/normalize.min.css');

* {
    outline: none;
}

html {
    margin-top: 0!important;
}

body {
    font-size: 16px; 
	color: #555;
    font-family: 'Slabo 27px', serif;
    margin: 0;
    padding: 0;
}

/* Mensagens Gerais */
.msg { 
	padding: 15px 25px; 
	text-align: center; 
	border-radius: 5px; 
	background: #f2f2f2; 
	border: 1px solid #DDD;
}

/* Alerta */
.msg.msg-alert { 
	border-color: #FFA305; 
	color:#FFA305; 
	background: #FCF6EB;
}

/* Erro */
.msg.msg-error { 
	border-color: #DB2323; 
	color:#DB2323; 
	background: #FFF0F0; 
}

/* Sucesso */
.msg.msg-success { 
	border-color: #30CF6C; 
	color: #30CF6C; 
	background: #E3FFEE; 
}

    /* Canais */
        .channels {
            max-width: 800px;
            margin: 50px auto;
            text-align: center;
        }

        .channels .list-channels {
            display: flex;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .channels .list-channels > a {
            display: block;
            width: calc(25% - 10px);
            margin: 5px;
            padding: 15px 10px;
            box-sizing: border-box;
            font-weight: bolder;
            font-size: 26px;
            color: #333;
            text-decoration: none;
            position: relative;
            background: #f5f5f5;
        }

        .channels .list-channels > a:hover {
            color: #004494;
        }

        .channels .list-channels > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 0;
            background: #004494;
            transition: .2s linear;
        }

        .channels .list-channels > a:hover::after {
            width: 100%;
            transition: .2s linear;
        }

        /* Interna Canal */
            .channel-loading-screen {
                display: flex;
                position: fixed;
                top: 100vh;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: #fff;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                z-index: 10;
            }

            .channel-loading-screen img.logo {
                margin-bottom: 10px;
            }

            .channel-bar {
                position: absolute;
                z-index: 5;
                left: 0;
                bottom: 0;
                padding: 20px;
                border-top: 2px solid #ddd;
                width: 100%;
                box-sizing: border-box;
                background: #fff;
            }

            .channel-bar img {
                margin-bottom: -8px;
            }

            .channel-bar .timeout-bar {
                position: absolute;
                top: -3px;
                left: 0;
                height: 4px;
                width: 5px;
                background: #0763DE;
            }

            .channel-bar .group {
                display: flex;
                font-size: 18px;
            }

            .channel-bar .group .block {
                width: 33.333%;
                text-align: center;
                align-items: center;
            }

            .channel-bar .group .block .location {
                display: inline-block;
                margin-right: 10px;
            }

            .channel-bar .group .block .temperature {
                display: inline-block;
                margin-left: 10px;
            }

            .channel-bar .group .block .temperature > i {
                margin-right: 5px;
            }

            .channel-bar .group .block .temperature > strong {
                font-size: 14px;
                margin-right: 5px;
            }

            .channel-bar .group .block .temperature > strong > span {
                font-weight: normal;
                font-size: 19px;
                margin-left: 2px;
            }

            .channel-bar .group .block .relogio > i {
                margin-right: 5px;
                top: 1px;
                position: relative;
            }

            .channel-bar .group .block:first-child {
                text-align: left;
                padding-top: 3px;
            }

            .channel-bar .group .block:last-child {
                text-align: right;
                padding-top: 3px;
            }

            .channel-slides {
                width: 100vw;
                height: 100vh;
                background: #eee;
                position: relative;
                overflow: hidden;
            }

                /* Slides */
                    /* Feeds*/
                        .channel-slides .slide-feed {
                            position: absolute;
                            left: 0;
                            top: 0;
                            width: 100%;
                            height: 100%;
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center center;
                            display: none;
                        }

                        .channel-slides .slide-feed .slide-feed-info {
                            position: absolute;
                            right: -100%;
                            bottom: 100px;
                            text-align: right;
                            max-width: 800px;
                        }

                        .channel-slides .slide-feed .slide-feed-info .label,
                        .channel-slides .slide-feed .slide-feed-info .source {
                            background: #004494;
                            color: #fff;
                            font-size: 26px;
                            padding: 15px;
                            border-radius: 10px 0 0 0;
                            display: table;
                            float: right;
                            clear: right;
                        }

                        .channel-slides .slide-feed .slide-feed-info .source {
                            border-radius: 0 0 0 10px;
                            background: #CCC;
                            color: #004494;
                        }

                        .channel-slides .slide-feed .slide-feed-info .title {
                            background: rgba(255,255,255, .9);
                            font-size: 35px;
                            border-radius: 10px 0 0 0;
                            padding: 25px;
                            display: table;
                            float: right;
                            clear: right;
                        }
                    
                    /* Default */
                        .channel-slides .slide-default {
                            position: absolute;
                            left: 0;
                            top: 0;
                            width: 100%;
                            height: 100%;
                            display: none;
                            color: #fff;
                        }

                        .channel-slides .slide-default .slide-container {
                            display: flex;
                            height: 100%;
                            width: 100%;
                            justify-content: center;
                            align-items: center;
                        }

                        .channel-slides .slide-default .slide-container > div {
                            width: 50%;
                            box-sizing: border-box;
                            padding: 40px;
                            vertical-align: middle;
                            position: relative;
                            height: 100%;
                        }

                        .channel-slides .slide-default .slide-container .slide-image {
                            background-size: cover;
                            background-repeat: none;
                            background-position: center center;
                            top: -100%;
                        }

                        .channel-slides .slide-default .slide-container .slide-text {
                            background: #004494;
                            top: 100%;
                        }

                    /* Images */
                        .channel-slides > .slide-image-only,
                        .channel-slides > .slide-video {
                            position: absolute;
                            left: 0;
                            top: 0;
                            width: 100%;
                            height: 100%;
                            display: none;
                            background-size: contain;
                            background-repeat: no-repeat;
                            background-position: center center;
                        }
                    
                    /* Videos */
                        .channel-slides > .slide-video video {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }

                        

            