/* Minification failed. Returning unminified contents.
(347,25): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(348,25): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(372,124): run-time error CSS1039: Token not allowed after unary operator: '-sx'
(373,93): run-time error CSS1039: Token not allowed after unary operator: '-sx'
(374,85): run-time error CSS1039: Token not allowed after unary operator: '-sx'
(482,106): run-time error CSS1039: Token not allowed after unary operator: '-sx'
(483,75): run-time error CSS1039: Token not allowed after unary operator: '-sx'
(484,67): run-time error CSS1039: Token not allowed after unary operator: '-sx'
(889,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(890,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(891,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(892,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(893,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(894,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
.t-a-audioplayer-1 {
    position: relative;
    clear: both;
    margin: 1rem 0 3rem
}

    .t-a-audioplayer-1 .player-container {
        background: -webkit-gradient(linear,left top,left bottom,from(#f8f6f2),color-stop(0,hsla(40,30%,96%,0)));
        background: -webkit-linear-gradient(top,#f8f6f2 0,hsla(40,30%,96%,0));
        background: linear-gradient(180deg,#f8f6f2 0,hsla(40,30%,96%,0));
        border-top-width: 1px;
        border-bottom: 0
    }

.player {
    z-index: 99;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(3,3,3,.8)
}

.player, .player-container {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.player-container {
    max-width: 800px;
    padding: 15px 0;
    border-top: 2px solid #f0efef;
    border-bottom: 2px solid #f0efef;
    margin: 30px 0;
    min-height: 160px
}

    .player-container, .player-container .player-controller {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex
    }

        .player-container .player-controller {
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            min-width: 100px;
            min-height: 100px;
            height: 100px;
            width: 100px;
            border-radius: 50%;
            background: #fff;
            position: relative;
            border: 10px solid #67a5cb;
            margin-left: 10px
        }

            .player-container .player-controller.playing:after {
                content: "";
                width: 30px;
                height: 30px;
                position: absolute;
                background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='pause' class='svg-inline--fa fa-pause fa-w-14' role='img' viewBox='0 0 448 512'><path fill='white' d='M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z'/></svg>");
                background-repeat: no-repeat;
                background-position: 50%
            }

            .player-container .player-controller.paused:after {
                content: "";
                width: 30px;
                height: 30px;
                position: absolute;
                background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='play' class='svg-inline--fa fa-play fa-w-14' role='img' viewBox='0 0 448 512'><path fill='white' d='M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z'/></svg>");
                background-repeat: no-repeat;
                background-position: 100%
            }

            .player-container .player-controller:before {
                content: "";
                width: 68px;
                height: 68px;
                background: #0069a6;
                border-radius: 50%
            }

            .player-container .player-controller.playing .player-animation {
                position: absolute;
                border-radius: 50%;
                border: 3px solid #fff;
                opacity: 0;
                display: block;
                width: 0;
                height: 0;
                -webkit-animation: b 2.5s .5s ease-in-out infinite forwards;
                animation: b 2.5s .5s ease-in-out infinite forwards
            }

            .player-container .player-controller.paused .player-animation {
                display: none
            }

        .player-container .player-information {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -moz-box-orient: vertical;
            -moz-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            padding-left: 20px;
            margin-right: 20px;
            position: relative;
            width: 100%
        }

            .player-container .player-information, .player-container .player-information .volume-controller {
                display: -webkit-box;
                display: -webkit-flex;
                display: -moz-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                -webkit-justify-content: space-between;
                -moz-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between
            }

                .player-container .player-information .volume-controller {
                    position: absolute;
                    top: 0;
                    right: 20px;
                    width: 100px;
                    height: 20px;
                    -webkit-box-align: center;
                    -webkit-align-items: center;
                    -moz-box-align: center;
                    -ms-flex-align: center;
                    align-items: center
                }

                    .player-container .player-information .volume-controller:active input[type=range], .player-container .player-information .volume-controller:hover input[type=range] {
                        opacity: 1;
                        -webkit-transition: opacity .25s ease-out;
                        transition: opacity .25s ease-out;
                    }

                    .player-container .player-information .volume-controller span {
                        width: 20px;
                        height: 20px;
                        display: -webkit-box;
                        display: -webkit-flex;
                        display: -moz-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -webkit-align-items: center;
                        -moz-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -webkit-justify-content: center;
                        -moz-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        -webkit-align-self: flex-end;
                        -ms-flex-item-align: end;
                        align-self: flex-end
                    }

                        .player-container .player-information .volume-controller span img {
                            width: 100%
                        }

                            .player-container .player-information .volume-controller span img.hide {
                                display: none
                            }

                    .player-container .player-information .volume-controller input[type=range] {
                        margin: 0;
                        padding: 0;
                        width: 75px;
                        height: 20px;
                        background: 0 0;
                        font: 1em/1 arial,sans-serif;
                        opacity: 0;
                        -webkit-transition: opacity .25s ease-in;
                        transition: opacity .25s ease-in;
                    }

                        .player-container .player-information .volume-controller input[type=range], .player-container .player-information .volume-controller input[type=range]::-webkit-slider-thumb {
                            -webkit-appearance: none
                        }

                            .player-container .player-information .volume-controller input[type=range]::-webkit-slider-runnable-track {
                                box-sizing: border-box;
                                border: none;
                                width: 100%;
                                height: .25em;
                                background: hsla(0,0%,91%,.6)
                            }

                            .player-container .player-information .volume-controller input[type=range]::-moz-range-track {
                                -moz-box-sizing: border-box;
                                box-sizing: border-box;
                                border: none;
                                width: 100%;
                                height: .25em;
                                background: hsla(0,0%,91%,.6)
                            }

                            .player-container .player-information .volume-controller input[type=range]::-ms-track {
                                box-sizing: border-box;
                                border: none;
                                width: 100%;
                                height: .25em;
                                background: hsla(0,0%,91%,.6)
                            }

                            .player-container .player-information .volume-controller input[type=range]::-moz-range-progress {
                                height: .25em;
                                background: #2f2f2f
                            }

                            .player-container .player-information .volume-controller input[type=range]::-ms-fill-lower {
                                height: .25em;
                                background: #2f2f2f
                            }

                            .player-container .player-information .volume-controller input[type=range]::-webkit-slider-thumb {
                                margin-top: -.325em;
                                box-sizing: border-box;
                                border: none;
                                width: .9em;
                                height: .9em;
                                border-radius: 50%;
                                background: #2f2f2f;
                                background: #d8d8d8
                            }

                            .player-container .player-information .volume-controller input[type=range]::-moz-range-thumb {
                                -moz-box-sizing: border-box;
                                box-sizing: border-box;
                                border: none;
                                width: .9em;
                                height: .9em;
                                border-radius: 50%;
                                background: #2f2f2f
                            }

                            .player-container .player-information .volume-controller input[type=range]::-ms-thumb {
                                margin-top: 0;
                                box-sizing: border-box;
                                border: none;
                                width: .9em;
                                height: .9em;
                                border-radius: 50%;
                                background: #2f2f2f
                            }

                            .player-container .player-information .volume-controller input[type=range]::-ms-tooltip {
                                display: none
                            }

                .player-container .player-information .message {
                    font-weight: 700;
                    color: #5b5b5b;
                    font-size: 18px;
                    margin-right: 110px;
                    display: -webkit-box;
                    -webkit-line-clamp: 4;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    line-height: 1.15;
                    min-height: 30px
                }

                .player-container .player-information .equalizer {
                    height: 40px;
                    width: 100%;
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: end;
                    -webkit-align-items: flex-end;
                    -moz-box-align: end;
                    -ms-flex-align: end;
                    align-items: flex-end
                }

                    .player-container .player-information .equalizer .item {
                        display: inline-block;
                        border-radius: 13px;
                        width: 9px;
                        margin-right: 6px;
                        background: #0069a6;
                        -webkit-animation: c 6s 0s infinite;
                        animation: c 6s 0s infinite;
                        -webkit-animation-timing-function: linear;
                        animation-timing-function: linear;
                        vertical-align: top;
                        height: 2px
                    }

                        .player-container .player-information .equalizer .item.stop {
                            -webkit-animation-play-state: paused;
                            animation-play-state: paused
                        }

                .player-container .player-information .timeline {
                    position: relative
                }

                    .player-container .player-information .timeline span {
                        font-size: 12px;
                        color: #c8c8c8;
                        float: left
                    }

                        .player-container .player-information .timeline span.end {
                            float: right
                        }

                    .player-container .player-information .timeline input.progress {
                        --sx: -webkit-calc(0.5 *0.9em + var(--ratio) * (100% - 0.9em));
                        --sx: calc(0.5 *0.9em + var(--ratio) * (100% - 0.9em));
                        margin: 0;
                        margin-top: 10px;
                        padding: 0;
                        width: 100%;
                        height: .9em;
                        background: 0 0;
                        font: 1em/1 arial,sans-serif
                    }

                        .player-container .player-information .timeline input.progress, .player-container .player-information .timeline input.progress::-webkit-slider-thumb {
                            -webkit-appearance: none
                        }

                            .player-container .player-information .timeline input.progress:focus {
                                outline: 0
                            }

                            .player-container .player-information .timeline input.progress::-webkit-slider-runnable-track {
                                box-sizing: border-box;
                                border: none;
                                width: 100%;
                                height: .25em;
                                background: hsla(0,0%,91%,.6);
                                background: -webkit-gradient(linear,left top,left bottom,from(#0069a6),to(#0069a6)) 0/var(--sx) 100% no-repeat hsla(0,0%,91%,.6);
                                background: -webkit-linear-gradient(#0069a6,#0069a6) 0/var(--sx) 100% no-repeat hsla(0,0%,91%,.6);
                                background: linear-gradient(#0069a6,#0069a6) 0/var(--sx) 100% no-repeat hsla(0,0%,91%,.6)
                            }

                            .player-container .player-information .timeline input.progress::-moz-range-track {
                                -moz-box-sizing: border-box;
                                box-sizing: border-box;
                                border: none;
                                width: 100%;
                                height: .25em;
                                background: hsla(0,0%,91%,.6)
                            }

                            .player-container .player-information .timeline input.progress::-ms-track {
                                box-sizing: border-box;
                                border: none;
                                width: 100%;
                                height: .25em;
                                background: #0069a6
                            }

                            .player-container .player-information .timeline input.progress::-moz-range-progress {
                                height: .25em;
                                background: #0069a6
                            }

                            .player-container .player-information .timeline input.progress::-ms-fill-lower {
                                height: .25em;
                                background: #0069a6
                            }

                            .player-container .player-information .timeline input.progress::-webkit-slider-thumb {
                                margin-top: -.325em;
                                box-sizing: border-box;
                                border: none;
                                width: .9em;
                                height: .9em;
                                border-radius: 50%;
                                background: #0069a6
                            }

                            .player-container .player-information .timeline input.progress::-moz-range-thumb {
                                -moz-box-sizing: border-box;
                                box-sizing: border-box;
                                border: none;
                                width: .9em;
                                height: .9em;
                                border-radius: 50%;
                                background: #0069a6
                            }

                            .player-container .player-information .timeline input.progress::-ms-thumb {
                                margin-top: 0;
                                box-sizing: border-box;
                                border: none;
                                width: .9em;
                                height: .9em;
                                border-radius: 50%;
                                background: #0069a6
                            }

                            .player-container .player-information .timeline input.progress::-ms-tooltip {
                                display: none
                            }

                    .player-container .player-information .timeline .buffer {
                        position: absolute;
                        top: 15px;
                        width: 0;
                        height: 4px;
                        background: #a8a8a8;
                        z-index: -1
                    }

        .player-container.theme--blue {
            background: #4990e2;
            background: -webkit-linear-gradient(90deg,#4990e2,#1872db);
            background: -webkit-gradient(linear,left top,right top,from(#4990e2),to(#1872db));
            background: -webkit-linear-gradient(left,#4990e2,#1872db);
            background: linear-gradient(90deg,#4990e2,#1872db);
            z-index: 0
        }

            .player-container.theme--blue .player-controller {
                border: 10px solid rgba(22,113,219,.4)
            }

                .player-container.theme--blue .player-controller:before {
                    background: #1671db
                }

            .player-container.theme--blue .player-information {
                min-height: 110px
            }

                .player-container.theme--blue .player-information .equalizer .item {
                    background: hsla(0,0%,100%,.6)
                }

                .player-container.theme--blue .player-information .timeline span {
                    color: #fff
                }

                .player-container.theme--blue .player-information .timeline input.progress::-webkit-slider-runnable-track {
                    box-sizing: border-box;
                    border: none;
                    width: 100%;
                    height: .25em;
                    background: hsla(0,0%,91%,.6);
                    background: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#fff)) 0/var(--sx) 100% no-repeat hsla(0,0%,91%,.6);
                    background: -webkit-linear-gradient(#fff,#fff) 0/var(--sx) 100% no-repeat hsla(0,0%,91%,.6);
                    background: linear-gradient(#fff,#fff) 0/var(--sx) 100% no-repeat hsla(0,0%,91%,.6)
                }

                .player-container.theme--blue .player-information .timeline input.progress::-moz-range-track {
                    -moz-box-sizing: border-box;
                    box-sizing: border-box;
                    border: none;
                    width: 100%;
                    height: .25em;
                    background: hsla(0,0%,91%,.6)
                }

                .player-container.theme--blue .player-information .timeline input.progress::-ms-track {
                    box-sizing: border-box;
                    border: none;
                    width: 100%;
                    height: .25em;
                    background: hsla(0,0%,91%,.6)
                }

                .player-container.theme--blue .player-information .timeline input.progress::-moz-range-progress {
                    height: .25em;
                    background: #2f2f2f
                }

                .player-container.theme--blue .player-information .timeline input.progress::-ms-fill-lower {
                    height: .25em;
                    background: #2f2f2f
                }

                .player-container.theme--blue .player-information .timeline input.progress::-webkit-slider-thumb {
                    margin-top: -.325em;
                    box-sizing: border-box;
                    border: none;
                    width: .9em;
                    height: .9em;
                    border-radius: 50%;
                    background: #fff
                }

                .player-container.theme--blue .player-information .timeline input.progress::-moz-range-thumb {
                    -moz-box-sizing: border-box;
                    box-sizing: border-box;
                    border: none;
                    width: .9em;
                    height: .9em;
                    border-radius: 50%;
                    background: #fff
                }

                .player-container.theme--blue .player-information .timeline input.progress::-ms-thumb {
                    margin-top: 0;
                    box-sizing: border-box;
                    border: none;
                    width: .9em;
                    height: .9em;
                    border-radius: 50%;
                    background: #fff
                }

@-webkit-keyframes b {
    0% {
        width: 0;
        height: 0%;
        opacity: 0
    }

    70% {
        opacity: .6
    }

    to {
        width: 100%;
        height: 100%;
        opacity: 0
    }
}

@keyframes b {
    0% {
        width: 0;
        height: 0%;
        opacity: 0
    }

    70% {
        opacity: .6
    }

    to {
        width: 100%;
        height: 100%;
        opacity: 0
    }
}

@-webkit-keyframes c {
    0% {
        height: 38px
    }

    4% {
        height: 32px
    }

    8% {
        height: 30px
    }

    12% {
        height: 20px
    }

    16% {
        height: 10px
    }

    20% {
        height: 20px
    }

    24% {
        height: 30px
    }

    28% {
        height: 0
    }

    32% {
        height: 30px
    }

    36% {
        height: 38px
    }

    40% {
        height: 10px
    }

    44% {
        height: 30px
    }

    48% {
        height: 38px
    }

    52% {
        height: 20px
    }

    56% {
        height: 0
    }

    60% {
        height: 20px
    }

    64% {
        height: 38px
    }

    68% {
        height: 20px
    }

    72% {
        height: 38px
    }

    76% {
        height: 10px
    }

    80% {
        height: 38px
    }

    84% {
        height: 28px
    }

    88% {
        height: 38px
    }

    92% {
        height: 10px
    }

    96% {
        height: 38px
    }

    to {
        height: 38px
    }
}

@keyframes c {
    0% {
        height: 38px
    }

    4% {
        height: 32px
    }

    8% {
        height: 30px
    }

    12% {
        height: 20px
    }

    16% {
        height: 10px
    }

    20% {
        height: 20px
    }

    24% {
        height: 30px
    }

    28% {
        height: 0
    }

    32% {
        height: 30px
    }

    36% {
        height: 38px
    }

    40% {
        height: 10px
    }

    44% {
        height: 30px
    }

    48% {
        height: 38px
    }

    52% {
        height: 20px
    }

    56% {
        height: 0
    }

    60% {
        height: 20px
    }

    64% {
        height: 38px
    }

    68% {
        height: 20px
    }

    72% {
        height: 38px
    }

    76% {
        height: 10px
    }

    80% {
        height: 38px
    }

    84% {
        height: 28px
    }

    88% {
        height: 38px
    }

    92% {
        height: 10px
    }

    96% {
        height: 38px
    }

    to {
        height: 38px
    }
}

.player-container {
    display: block;
    position: relative;
    max-width: 100%;
    min-height: 120px;
    margin: 0;
    padding: 0 15px 32px 140px;
    font-family: CooperHewitt-Medium,Helvetica,sans-serif;
    font-size: 16px
}

    .player-container .player-controller {
        position: absolute;
        z-index: 1;
        left: 20px;
        top: 50%;
        margin: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        cursor: pointer
    }

        .player-container .player-controller:before {
            -moz-box-sizing: content-box;
            box-sizing: content-box;
            -webkit-box-flex: 0;
            -webkit-flex: 0 0 auto;
            -moz-box-flex: 0;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto
        }

        .player-container .player-controller:after {
            -webkit-transition: opacity .3s cubic-bezier(.694,.0482,.335,1) 0s;
            transition: opacity .3s cubic-bezier(.694,.0482,.335,1) 0s
        }

        .player-container .player-controller:hover:before {
            background: #003e6a;
        }

    .player-container .player-information {
        display: block;
        position: static;
        padding: 0
    }

        .player-container .player-information .volume-controller span {
            cursor: pointer
        }

        .player-container .player-information .volume-controller input[type=range] {
            font: 16px/1 sans-serif;
            cursor: pointer
        }

            .player-container .player-information .volume-controller input[type=range]:focus {
                outline: 0
            }

            .player-container .player-information .volume-controller input[type=range]::-webkit-slider-runnable-track {
                height: 4px
            }

            .player-container .player-information .volume-controller input[type=range]::-moz-range-track {
                height: 4px
            }

            .player-container .player-information .volume-controller input[type=range]::-ms-track {
                height: 4px
            }

            .player-container .player-information .volume-controller input[type=range]::-moz-range-progress {
                height: 4px
            }

            .player-container .player-information .volume-controller input[type=range]::-ms-fill-lower {
                height: 4px
            }

            .player-container .player-information .volume-controller input[type=range]::-webkit-slider-thumb {
                margin-top: -5px;
                width: 14px;
                height: 14px
            }

            .player-container .player-information .volume-controller input[type=range]::-moz-range-thumb {
                width: 14px;
                height: 14px
            }

            .player-container .player-information .volume-controller input[type=range]::-ms-thumb {
                width: 14px;
                height: 14px
            }

        .player-container .player-information .timeline input.progress {
            --range: -webkit-calc(var(--max) - var(--min));
            --range: calc(var(--max) - var(--min));
            --ratio: -webkit-calc((var(--val) - var(--min))/var(--range));
            --ratio: calc((var(--val) - var(--min)) / var(--range));
            --sx: -webkit-calc(0.5 * 14px + var(--ratio) * (100% - 14px));
            --sx: calc(0.5 * 14px + var(--ratio) * (100% - 14px));
            height: 14px;
            font: 16px/1 sans-serif
        }

            .player-container .player-information .timeline input.progress::-webkit-slider-runnable-track {
                height: 4px
            }

            .player-container .player-information .timeline input.progress::-moz-range-track {
                height: 4px
            }

            .player-container .player-information .timeline input.progress::-ms-track {
                height: 4px
            }

            .player-container .player-information .timeline input.progress::-moz-range-progress {
                height: 4px
            }

            .player-container .player-information .timeline input.progress::-ms-fill-lower {
                height: 4px
            }

            .player-container .player-information .timeline input.progress::-webkit-slider-thumb {
                margin-top: -5px;
                width: 14px;
                height: 14px
            }

            .player-container .player-information .timeline input.progress::-moz-range-thumb {
                width: 14px;
                height: 14px
            }

            .player-container .player-information .timeline input.progress::-ms-thumb {
                width: 14px;
                height: 14px
            }

body.t-browser-msedge .player-container .player-information .timeline input.progress::-ms-thumb {
    transform: translateY(3px)
}

.player-container .player-information .timeline .buffer {
    top: 5px
}

.player-container .player ~ p[style] {
    bottom: -2px !important;
    margin: 0;
    padding: 5px !important;
    background: hsla(0,0%,100%,.6);
    line-height: 1.1
}

.player-container .player-information .timeline span {
    font-size: 11px
}

.player-container .player-information .equalizer {
    margin: 33px 0 0
}

.player-container .player-information .message {
    margin-bottom: 0;
    font-family: NoticiasSans,sans-serif;
    color: #000000;
    font-size: 1.5rem;
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

    .player-container .player-information .message ~ .equalizer {
        margin-top: 20px
    }

.player-container .player-information .volume-controller {
    top: 10px;
    right: 15px
}

.player-container .player-information .player-preinfo {
    margin: 10px 0 0;
    font-family: NoticiasSans,sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #9b9b9b
}

    .player-container .player-information .player-preinfo ~ .message {
        margin-top: 10px
    }

.player-container .player-information .player-linklist {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    width: 160px;
    padding: 0 15px;
    border-left: 1px solid rgba(0,0,0,.1)
}

    .player-container .player-information .player-linklist li {
        padding: 0 0 8px
    }

        .player-container .player-information .player-linklist li a {
            display: block;
            height: 2.8rem;
            padding: 0 1rem;
            background: #2f2e2a;
            border-radius: 2rem;
            font-family: CooperHewitt-Bold,Helvetica,sans-serif;
            font-size: 1.1rem;
            line-height: 2.9rem;
            color: #fff;
            text-transform: uppercase;
            text-align: center;
            cursor: pointer;
            pointer-events: all;
            -webkit-transition: background-color .3s cubic-bezier(.694,.0482,.335,1) 0s;
            transition: background-color .3s cubic-bezier(.694,.0482,.335,1) 0s
        }

            .player-container .player-information .player-linklist li a:hover {
                background-color: #0b185d
            }

        .player-container .player-information .player-linklist li:last-child {
            padding: 0
        }

.player-container .player-thumb {
    position: absolute;
    left: 20px;
    top: 20px
}

    .player-container .player-thumb .player-thumb-i {
        position: relative;
        width: 170px;
        padding: 0 5px 5px 0
    }

        .player-container .player-thumb .player-thumb-i figure {
            position: relative;
            width: 165px
        }

            .player-container .player-thumb .player-thumb-i figure img {
                display: block;
                width: 100%
            }

    .player-container .player-thumb ~ .player-controller {
        top: 53px;
        left: 53px;
        -webkit-transform: scale(.7);
        transform: scale(.7);
        background: 0 0
    }

        .player-container .player-thumb ~ .player-controller:before {
            -moz-box-sizing: content-box;
            box-sizing: content-box;
            border: 5px solid #fff
        }

        .player-container .player-thumb ~ .player-controller:after {
            -webkit-transform: scale(.8);
            transform: scale(.8)
        }

    .player-container .player-thumb ~ .player-information {
        padding-left: 80px
    }

        .player-container .player-thumb ~ .player-information .message {
            min-height: 0;
            font-family: NoticiasSans,sans-serif;
            font-size: 25px;
            line-height: 1.12
        }

        .player-container .player-thumb ~ .player-information .equalizer {
            margin-top: 15px
        }

        .player-container .player-thumb ~ .player-information .player-preinfo {
            margin: 0;
            padding-top: 18px
        }

            .player-container .player-thumb ~ .player-information .player-preinfo ~ .message {
                margin-right: 0
            }

.player-container.theme--blue {
    border-color: transparent
}

    .player-container.theme--blue .player-information {
        min-height: 0
    }

        .player-container.theme--blue .player-information .timeline input.progress::-webkit-slider-runnable-track {
            height: 4px
        }

        .player-container.theme--blue .player-information .timeline input.progress::-moz-range-track {
            height: 4px
        }

        .player-container.theme--blue .player-information .timeline input.progress::-ms-track {
            height: 4px
        }

        .player-container.theme--blue .player-information .timeline input.progress::-moz-range-progress {
            height: 4px
        }

        .player-container.theme--blue .player-information .timeline input.progress::-ms-fill-lower {
            height: 4px
        }

        .player-container.theme--blue .player-information .timeline input.progress::-webkit-slider-thumb {
            margin-top: -5px;
            width: 14px;
            height: 14px
        }

        .player-container.theme--blue .player-information .timeline input.progress::-moz-range-thumb {
            width: 14px;
            height: 14px
        }

        .player-container.theme--blue .player-information .timeline input.progress::-ms-thumb {
            width: 14px;
            height: 14px
        }

        .player-container.theme--blue .player-information .message {
            display: none
        }

.t-body-playerpopup {
    min-width: 320px
}

    .t-body-playerpopup .player-container {
        padding: 0 175px 0 120px
    }

        .t-body-playerpopup .player-container .volume-controller {
            top: 2px;
            right: 175px
        }

        .t-body-playerpopup .player-container .player-controller {
            left: 10px;
            -webkit-transform: translateY(-50%) scale(.8);
            transform: translateY(-50%) scale(.8)
        }

        .t-body-playerpopup .player-container .player-information .player-preinfo {
            margin: 5px 0 0;
            font-size: 14px;
            color: #fff;
            opacity: .6;
            pointer-events: none
        }

        .t-body-playerpopup .player-container .player-information .equalizer {
            margin: 2px 0 0
        }

@media (max-width:1249px) {
    body:not(.t-body-playerpopup) .player-container {
        padding: 0 15px 32px
    }

        body:not(.t-body-playerpopup) .player-container .player-controller {
            position: absolute;
            left: 10px;
            top: 10px;
            margin: 0;
            -webkit-transform: scale(.8);
            transform: scale(.8);
            -webkit-transform-origin: 0 0;
            transform-origin: 0 0
        }

        body:not(.t-body-playerpopup) .player-container .player-information .player-linklist {
            display: none
        }

        body:not(.t-body-playerpopup) .player-container .player-information .equalizer {
            margin: 105px 0 0
        }

        body:not(.t-body-playerpopup) .player-container .player-information .message {
            min-height: 55px;
            margin: 27px 110px 0 85px;
            font-size: 15px
        }

            body:not(.t-body-playerpopup) .player-container .player-information .message ~ .equalizer {
                margin: 21px 0 0
            }

        body:not(.t-body-playerpopup) .player-container .player-information .player-preinfo {
            margin-left: 85px;
            font-size: 15px
        }

            body:not(.t-body-playerpopup) .player-container .player-information .player-preinfo ~ .message {
                min-height: 45px;
                margin-top: 15px
            }

        body:not(.t-body-playerpopup) .player-container .player-thumb {
            left: 15px;
            top: 15px
        }

            body:not(.t-body-playerpopup) .player-container .player-thumb ~ .player-controller {
                top: 55px;
                left: 55px
            }

            body:not(.t-body-playerpopup) .player-container .player-thumb ~ .player-information {
                padding-left: 190px
            }

                body:not(.t-body-playerpopup) .player-container .player-thumb ~ .player-information .message {
                    margin-left: 0;
                    font-size: 20px;
                    line-height: 1.25
                }

                body:not(.t-body-playerpopup) .player-container .player-thumb ~ .player-information .equalizer {
                    margin-top: 10px
                }

                body:not(.t-body-playerpopup) .player-container .player-thumb ~ .player-information .player-preinfo {
                    margin-top: 14px;
                    margin-left: 0
                }
}

@media (max-width:600px) {
    body:not(.t-body-playerpopup) .player-container .volume-controller {
        top: 4px
    }

    body:not(.t-body-playerpopup) .player-container .player-information .message {
        margin-right: 0
    }

    .t-body-playerpopup .player-container {
        padding: 0 15px 0 120px
    }

        .t-body-playerpopup .player-container .volume-controller {
            right: 15px
        }

        .t-body-playerpopup .player-container .player-information .player-linklist {
            display: none
        }
}

