/**
 * CSS variables for use in the firetv.scss file
 *
 * These variables create a single theme for the application.
 *
 * Organization :
 * - TYPES : Variables are separated by type (font-family, font-size, color etc)
 * - NAMES : Are descriptive of the CSS class name they modify
 * - VALUES : All variables below will only be set if they have not be set before.
 *
 * Usage : Variables are used for all colors, font-family and animation speed values. Other variables may be used for
 *         items that are repeated in the styles more than once .
 *
 */

/**
 * SCSS mixins for use in the firetv.scss file
 *
 */

/**
* All of the common css rules for the entire template.
*/

@font-face {
    font-family: LocatorLight;
    src: url("assets/Fonts/Locator-Light.otf") format("opentype");
}

@font-face {
    font-family: LocatorRegular;
    src: url("assets/Fonts/Locator-Regular.otf") format("opentype");
}

@font-face {
    font-family: LocatorBold;
    src: url("assets/Fonts/Locator-Bold.otf") format("opentype");
}

@font-face {
    font-family: LocatorBlack;
    src: url("assets/Fonts/Locator-Black.otf") format("opentype");
}

* {
    box-sizing: Border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    position: absolute;
    padding: 0;
    margin: 0;
    font-size: 20pt;
    font-family: "Helvetica Neue Light", "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
    background: #5a656f url("assets/bg_app.jpg") no-repeat left top;
    background-size: 100% 100%;
}

div {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.app-main-container {
    position: relative;
    width: inherit;
    height: inherit;
    overflow: hidden;
}

.app-top-bar {
    position: absolute;
    width: 100%;
    height: 240px;
}






.app-menu {
    position: absolute;
    left: 23%;
    top: 26%;
}
.app-logo {
    position: absolute;
    left: 8.3%;
    top: 30%;
}
.app-logo img {
    width: 100px;
    height: 100px;
}
.app-logo-interno {
    position: absolute;
    left: 14%;
    /* left: 8.3%; */
    top: 6.8%;
}


.app-logo-interno img {
    width: 100px;
    height: 100px;
}
.app-divisor {
    position: absolute;
    left: 19%;
    top: 30%;
}
.app-divisor img {
    height: 100px;
    width: 10px;
}
.app-divisor-interno {
    position: absolute;
    left: 22%;
    /* left: 19%; */
    top: 6.64%;
}

.app-divisor-interno img {
    height: 100px;
    width: 10px;
}

.app-menu-interno {
    position: absolute;
    left: 25%;
    top: 7.4%;
}

.leftnav-main-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 44%;
    margin: 0;
}

.leftnav-menu-list, .leftnav-menulist-expanded, .leftnav-menulist-collapsed {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
}

.leftnav-menulist-expanded {
    height: 100%;
    top: 0;
    z-index: 100;
}

.leftnav-menulist-collapsed {
    top: 148px;
    height: 92px;
    z-index: 10;
}

.leftnav-collapsed-highlight {
    -webkit-box-shadow: 0px 10px 18px 3px rgba(0, 0, 0, 0.44);
    -moz-box-shadow: 0px 10px 18px 3px rgba(0, 0, 0, 0.44);
    box-shadow: 0px 10px 18px 3px rgba(0, 0, 0, 0.44);
    border: solid;
    border-width: 1px;
    border-color: #dadada;
}

.leftnav-menulist-collapsed .leftnav-menu-scrolling-list {
    margin-top: -148px;
}

.leftnav-menu-scrolling-list {
    color: #b9bbbd;
}

.leftnav-list-item-static.leftnav-list-item-chosen.subcat-header {
    position: absolute;
    top: 148px;
    width: 40%;
    background: none;
    border: none;
}

.leftnav-list-item-static {
    word-wrap: break-word;
    line-height: 2;
    font-weight: lighter;
    font-size: 1.7em;
    min-height: 90px;
    padding: 0 50px 0 150px;
    overflow: hidden;
    margin-bottom: 2px;
    background-color: rgba(232, 232, 232, 0.1);
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    display: -webkit-box;
    /* NEW - Chrome */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: box;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    line-clamp: 1;
}

.leftnav-list-item-container:first-child {
    margin-top: 148px;
}

.leftnav-list-item-highlighted {
    color: #e8e8e8;
    border-width: 1px 1px 1px 0px;
    background: #000000 url("assets/icon_leftnav_arrowDown.png") no-repeat right 40px center;
    -webkit-filter: brightness(200%);
    -moz-filter: brightness(200%);
    filter: brightness(200%);
}

.leftnav-list-item-container .leftnav-list-item-selected {
    color: #000000;
    background: #ffffff url("assets/icon_leftnav_arrowDown.png") no-repeat right 40px center;
}

.leftnav-list-item-chosen {
    border-color: #3f484f;
    border-style: solid;
    border-width: 1px 1px 1px 0px;
    color: #e8e8e8;
    background: #3f484f url("assets/icon_leftnav_arrowDown.png") no-repeat right 40px center;
}

.search-icon {
    height: 50px;
    width: 50px;
}

.leftnav-search-box {
    border: none;
    width: 100%;
    color: #e8e8e8;
    padding-left: 140px;
    background-image: url("assets/search.png");
    background-position: 85px 30px;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-origin: initial;
    background-clip: initial;
    background-attachment: initial;
    outline-width: 0;
}

.leftnav-search-box.leftnav-list-item-highlighted {
    color: #e8e8e8;
    border-color: #e8e8e8;
    border-style: solid;
    border-width: 1px 1px 1px 0px;
    background: #000000 url("assets/icon_leftnav_arrowDown.png") no-repeat right 40px center;
}

.one-d-no-items-container {
    position: absolute;
    display: none;
    top: 300px;
    left: 200px;
    color: #e8e8e8;
    font-size: 3em;
}

.one-D-details-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transition-property: visibility;
    -moz-transition-property: visibility;
    transition-property: visibility;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    transition-timing-function: linear;
}

.subcategory-container {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    transition-timing-function: linear;
}

.one-D-details-summary-text {
    position: absolute;
    top: 690px;
    width: 80%;
    left: 150px;
    color: #e8e8e8;
}

.one-D-details-summary-text .one-D-summary-title {
    line-height: 1.4;
    color: #e8e8e8;
    font-size: 1.8em;
    font-family: "Helvetica Neue Medium", "HelveticaNeue-Medium", Helvetica, Arial, sans-serif;
    height: 62px;
    overflow: hidden;
    margin-top: 10px;
    display: -webkit-box;
    /* NEW - Chrome */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: box;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    line-clamp: 1;
}

.one-D-details-summary-text .one-D-summary-pubdate {
    font-weight: 200;
    height: 30px;
    font-size: 1em;
    color: #b9bbbd;
}

.one-D-details-summary-text .one-D-summary-pubdate .time-now-live {
    color: #FF704D;
}

.one-D-details-summary-text .one-D-summary-pubdate .time-upcoming {
    color: #66E066;
}

.one-D-details-summary-text .one-D-summary-description {
    color: #e8e8e8;
    font-style: italic;
    font-size: 1.1em;
    overflow: hidden;
    align-items: center;
    display: -webkit-box;
    /* NEW - Chrome */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: box;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    line-clamp: 2;
}

.one-D-details-summary-text .one-D-live-icon {
    background-image: url(assets/live.png);
    height: 44px;
    width: 93px;
    background-position-y: 5px;
    margin-right: 15px;
    background-repeat: no-repeat;
}

.detail-row-container-buttons {
    height: 75px;
    margin: 20px 0;
}

.detail-item-button, .detail-item-button-selected, .detail-item-button-static {
    position: relative;
    width: 315px;
    height: 73px;
    padding: 15px;
    float: left;
    font-size: 1.4em;
    margin-right: 20px;
    text-align: center;
    border: 1px solid transparent;
}

.detail-item-button-selected {
    overflow: hidden;
    margin-top: 0px;
    color: #e8e8e8;
    background-color: #000000;
    border: solid;
    border-color: #dadada;
    border-width: 1px;
    -webkit-box-shadow: 0px 10px 18px 3px rgba(0, 0, 0, 0.44);
    -moz-box-shadow: 0px 10px 18px 3px rgba(0, 0, 0, 0.44);
    box-shadow: 0px 10px 18px 3px rgba(0, 0, 0, 0.44);
}

.detail-item-button-static {
    color: #b9bbbd;
    background-color: #394149;
    line-height: 45px;
}

#one-D-shoveler-container {
    position: absolute;
    top: 290px;
    left: 0px;
    width: 100%;
    height: 380px;
    z-index: 20;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-property: -webkit-transform opacity;
    -moz-transition-property: -moz-transform opacity;
    transition-property: transform opacity;
    -webkit-transition-property: -webkit-transform visibility;
    -moz-transition-property: -moz-transform visibility;
    transition-property: transform visibility;
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    transition-timing-function: linear;
}

.shoveler-dynamic-row-container {
    position: absolute;
    width: 1000%;
    height: 100%;
    left: 200px;
    overflow: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    transition-timing-function: linear;
}

.shoveler-row-container {
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.shoveler-rowitem-static {
    position: absolute;
    left: 150px;
    height: 100%;
    -webkit-transition-property: -webkit-transform opacity;
    -moz-transition-property: -moz-transform opacity;
    transition-property: transform opacity;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    transform-origin: left center;
}

.shoveler-rowitem-static img {
    height: 100% !important;
    display: inline-block;
}

.shoveler-rowitem-selected {
    -webkit-box-shadow: 0px 10px 18px 3px rgba(0, 0, 0, 0.44);
    -moz-box-shadow: 0px 10px 18px 3px rgba(0, 0, 0, 0.44);
    box-shadow: 0px 10px 18px 3px rgba(0, 0, 0, 0.44);
}

.shoveler-rowitem-selected img {
    background-blend-mode: overlay;
    display: inline-block;
}

.shoveler-subcat-bg {
    width: 91px;
    height: 100%;
    margin-left: -10px;
    display: inline-block;
    background-image: url("assets/bg_subcat.png");
}

.player-main-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.player-content-video {
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
}

.player-controls-container {
    position: absolute;
    width: 100%;
    height: 30%;
    padding: 0 8%;
    bottom: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    z-index: 100;
}

.player-controls-timeline-container {
    position: relative;
    height: 10px;
    margin-top: 20px;
}

.player-controls-timeline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #25435a;
    border-radius: 6px;
    background-color: #707070;
}

.player-controls-timeline-playhead {
    position: absolute;
    width: 0%;
    height: 10px;
    border: 1px solid #394149;
    margin-top: -1px;
    border-radius: 6px;
    background-color: #e8e8e8;
}

.player-controls-skip-indicator {
    position: absolute;
    height: 100px;
    top: -100px;
    left: 60px;
    font-size: 1.8em;
    color: #e8e8e8;
    display: flex;
    background-size: 100% 100%;
    background-image: url("assets/skip_indicator.png");
    min-width: 200px;
    margin-left: -20px;
    transition: 0.05s;
}

.player-controls-skip-indicator img {
    height: 22px;
    width: 30px;
    margin-left: 25px;
    margin-top: 30px;
}

.player-controls-skip-indicator .player-controls-skip-symbol {
    margin-left: 15px;
    margin-top: 15px;
}

.player-controls-skip-indicator .player-controls-skip-number {
    margin-top: 15px;
    font-weight: bold;
}

.player-controls-skip-indicator .player-controls-skip-text {
    margin-top: 16px;
    margin-left: 5px;
    margin-right: 20px;
    font-weight: lighter;
}

#forward-indicator {
    display: none;
}

#rewind-indicator {
    display: none;
}

.player-controls-timestamp, .player-controls-timestamp-curtime, .player-controls-timestamp-totaltime {
    margin-top: 10px;
    font-size: 1.6em;
}

.player-controls-timestamp-curtime {
    color: #e8e8e8;
    display: inline-block;
    float: left;
}

.player-controls-timestamp-totaltime {
    color: #b9bbbd;
    display: inline-block;
    float: right;
}

.player-controls-content-title {
    position: absolute;
    top: 80px;
    height: 59px;
    color: #e8e8e8;
    font-size: 1.8em;
    font-family: "Helvetica Neue Medium", "HelveticaNeue-Medium", Helvetica, Arial, sans-serif;
    margin-top: 20px;
    overflow: hidden;
    display: -webkit-box;
    /* NEW - Chrome */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: box;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    line-clamp: 1;
}

.player-controls-button-back {
    display: none;
}

.player-controls-content-subtitle {
    position: absolute;
    top: 160px;
    width: 60%;
    height: 72px;
    color: #e8e8e8;
    font-style: italic;
    font-size: 1.1em;
    display: -webkit-box;
    /* NEW - Chrome */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: box;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    line-clamp: 2;
    font-size: 29pt;
}

.player-controls-content-horario {
    position: absolute;
    top: 212px;
    width: 60%;
    height: 72px;
    color: #e8e8e8;
    font-style: italic;
    font-size: 1.1em;
    display: -webkit-box;
    /* NEW - Chrome */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: box;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    line-clamp: 2;
    font-size: 29pt;
}

.player-controls-content-mensaje {
    position: absolute;
    top: 210px;
    text-align: right;
    width: 83%;
    height: 72px;
    color: #e8e8e8;
    font-style: italic;
    font-size: 1.1em;
    display: -webkit-box;
    /* NEW - Chrome */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: box;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 25pt;
    -moz-line-clamp: 2;
    line-clamp: 2;
}

.player-pause-button {
    position: absolute;
    top: 250px;
    left: 870px;
    height: 200px;
    width: 200px;
    opacity: 0;
}

.next-video-main-container {
    position: absolute;
    height: 610px;
    width: 30%;
    right: 0;
    top: 0;
    display: flex;
    color: #b9bbbd;
    background-color: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    z-index: 40000;
    /* display: flex;
    position: absolute;
    width: 100%;
    height: 30%;
    padding: 0 8%;
    bottom: 0;
    opacity: 0.99;
    background-color:red;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    z-index: 1000; */
}

.next-video-text {
    margin-top: 60px;
    margin-left: 50px;
    /* font-weight: bold; */
    font-size: 24pt;
    font-family: 'LocatorLight';
    color: #e8e8e8;
}

.next-video-thumbnail {
    height: 182px;
    max-width: 425px;
    margin-left: 50px;
    margin-top: 30px;
    width: auto;
    margin-bottom: 20px;
}
.next-video-thumbnail-podcast {
    height: 182px;
    max-width: 182px;
    margin-left: 180px;
    margin-top: 30px;
    width: auto;
    margin-bottom: 20px;
}

.next-video-thumbnail img {
    width: 424px;
    height: 203px;
    border: solid 1px #ffffff;
}
.next-video-thumbnail-podcast img {
    width: 182px;
    height: 182px;
    border: solid 1px #ffffff;
}

.next-video-thumbnail:after {
    position: relative;
    top: -265px;
    left: -30px;
    height: 100%;
    width: 30%;
    z-index: 90;
    content: " ";
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("assets/btn_previewPlay.png");
}
.next-video-thumbnail-podcast:after {
    position: relative;
    top: -245px;
    left: -0px;
    height: 100%;
    width: 30%;
    z-index: 90;
    content: " ";
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("assets/btn_previewPlay.png");
}



.next-video-playingtext {
    margin-left: 50px;
    margin-top: 20px;
    /* text-align: center; */
    /* background-color: rgba(120, 120, 120, 0.5); */
}

.next-video-playingtext button {
    font-size: 20pt;
    color: #242527;
    border-radius: 8px;
    padding: 10px;
    font-family: 'LocatorRegular';
    display: flex;
    align-items: center;
    width: 424px;
}

.next-video-playingtext button img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.next-video-title {
    margin-left: 50px;
    margin-top: 30px;
    color: #e8e8e8;
    font-family: 'LocatorBold';
    font-weight: bold;
    font-size: 24pt;
    line-height: 1;
}

.next-video-description {
    margin-top: 30px;
    margin-left: 50px;
    overflow: hidden;
    font-size: 22pt;
    font-family: 'LocatorLight';
    color: #e8e8e8;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -moz-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
}

.next-video-control-text {
    margin-top: 30px;
    margin-left: 50px;
    overflow: hidden;
    font-size: 1.1em;
    color: #e8e8e8;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -moz-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
}

.app-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    background-color: #000000;
}

.app-overlay-message {
    color: #e8e8e8;
    text-align: center;
    margin-top: 25%;
}

.content-load-spinner {
    margin: 6em auto;
    font-size: 10px;
    position: absolute;
    top: 400px;
    left: 900px;
    /* z-index: 600; */
     z-index: 40000;
    text-indent: -9999em;
    border-top: 1.2em solid rgba(255, 255, 255, 0.2);
    border-right: 1.2em solid #ffffff;
    border-bottom: 1.2em solid #ffffff;
    border-left: 1.2em solid #ffffff;
    -webkit-animation: spin 1.3s infinite linear;
    -moz-animation: spin 1.3s infinite linear;
    animation: spin 1.3s infinite linear;
}

.content-load-spinner, .content-load-spinner:after {
    border-radius: 50%;
    width: 15em;
    height: 15em;
}

.modal-dialog {
    z-index: 650;
    background-color: #242527;
    color: #dadada;
    position: absolute;
    left: 515px;
    top: 30%;
    width: 890px;
    min-height: 500px;
    padding: 60px;
}

.modal-dialog .dialog-title {
    margin-bottom: 30px;
    font-size: 48pt;
    font-family: "Helvetica Neue Medium", "HelveticaNeue-Medium", Helvetica, Arial, sans-serif;
}

.modal-dialog .dialog-message {
    margin-bottom: 60px;
    font-size: 36pt;
}

.modal-dialog .dialog-buttons-container {
    justify-content: center;
    display: flex;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media (-webkit-min-device-pixel-ratio: 1.5) {
    .player-controls-button-back {
        position: absolute;
        display: block;
        float: left;
        top: 10px;
        left: 30px;
    }
    .detail-row-container-buttons {
        bottom: 10px;
    }
}

#menuv {
    position: relative;
    padding: 2px;
}

/* Properties for horizontal menu */

#menuv li {
    float: left;
    margin: 1px 15px;
    padding: 1px 2px;
    list-style-type: none;
    font-weight: 600;
    text-align: left;
    text-decoration: nderline;
}

#menuv li {
    color: #FFFFFF;
}

#menuv .olishow {
    font-weight: bold;
    border-bottom: 4px solid #FFFFFF;
}

/*#menuv li a:hover { 
 font-weight:bold;
  border-bottom: 4px solid #FFFFFF;
}*/

/* Properties for vertical menu */

#menuv .oli ul, #menuv .olishow ul {
    display: none;
    position: absolute;
    margin: 1px auto 1px -8px;
    background-color: #f0f1fe;
    border: 1px dashed blue;
    padding: 1px;
}

#menuv li ul li {
    position: relative;
    clear: both;
    width: 99%;
    margin: 1px 0;
    border: none;
    background-color: #edfeed;
    padding: 1px;
}

#menuv li:hover ul, #menuv .olishow ul {
    display: block;
}

/* Links in sub-menu */

#menuv ul li a {
    display: block;
    margin: 0;
    font-weight: normal;
    padding: 1px;
}

#menuv ul li a:hover, #menuv ul .vlishow a {
    background-color: #fefefe;
    text-decoration: none;
    font-style: oblique;
    color: #fb0001;
}

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#menuv li a {
    font-size: 29pt;
}

#myImg:hover {
    opacity: 0.7;
}

/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (Image) */

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    /* Full height */
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */

.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

/* The Close Button */

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

.Radio {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.MiRadio {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.app-back-player {
    color: #FFF;
    width: 10%;
    text-align: right;
    position: absolute;
    top: 76%;
    right: 15px;
}

.MiSerie {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* background-color: rgba(0, 0, 0, 0.7); */
    /* Fallback color */
}

.MiSerieVincula {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.MiSerieTemporada {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.app-title {
    position: absolute;
    left: 280px;
    top: 63px;
    color: #008DA8;
    font-size: 37px;
    font-weight: bold;
}

.app-title-interno {
    position: absolute;
    left: 26%;
    top: 8.6%;
    color: #008DA8;
    font-size: 35pt;
    font-family: 'Locator-Bold';
    font-weight: bold;
}

.app-back-grid {
    color: #FFF;
    width: 10%;
    text-align: right;
    position: fixed;
    top: 78%;
    right: 18px;
}

.app-logo-live-interno {
    position: absolute;
    left: 3%;
    top: 8%;
    width: 93%;
    text-align: right;
}

.app-logo-live {
    position: absolute;
    left: 40px;
    top: 42px;
    width: 93%;
    text-align: right;
}

.app-img-live {
    position: absolute;
    left: 10%;
    top: 38%;
    width: 55%;
    height: 40%;
    text-align: left;
    border: none;
    /* background-color: #4CAF50; */
}

.app-img-live-serie {
    position: absolute;
    left: 8%;
    top: 30%;
    width: 40%;
    height: 60%;
    text-align: left;
    border: none;
    /* border-radius: 50px; */
    /* background-color: #4CAF50; */
}

.app-img-live-serie img {
    border-radius: 10px;
}

.app-img-programa {
    position: absolute;
    left: 10%;
    top: 25%;
    width: 67%;
    height: 61%;
    text-align: left;
}

/* .img_live{
    width: 668px;
    height: 320px;
} */

.app-info-live {
    position: absolute;
    top: 35%;
    left: 50%;
    text-align: center;
    /* background-color: rgba(120, 120, 120, 0.5); */
    height: 40%;
    width: 45%;
}

.app-info-detalle-serie {
    position: absolute;
    top: 22%;
    left: 8%;
    background-color: rgba(120, 120, 120, 0.5);
    height: 26%;
    width: 84%;
    padding-left: 20px;
}

.app-info-live-serie {
    position: absolute;
    top: 60%;
    left: 51%;
    text-align: center;
    /* background-color: rgba(120, 120, 120, 0.5); */
    height: 40%;
    width: 45%;
}

.nombre-capitulo-reproductor-serie {
    position: absolute;
    top: 20%;
    left: 8%;
    text-align: start !important;
}

.sliderReproductor {
    position: absolute;
    top: 86%;
    left: 51%;
    width: 45%;
    height: 30px;
    background-color: #707070;
}

.sliderReproductor .slider-interno {
    width: 0%;
    height: 30px;
    background-color: #006072;
}

.nombre-serie-reproductor-serie {
    position: absolute;
    top: 15%;
    left: 8%;
    text-align: start !important;
}

.app-info-live-title {
    color: #FFF;
    font-weight: bold;
    text-align: center;
    font-size: 30pt;
}

.app-info-live-descripcion {
    color: #fff;
    font-family: 'LocatorLight';
    font-size: 26pt;
}

.app-info-live-talento {
    color: #FFF;
    width: 100%;
    width: 100%;
    text-align: center;
    font-size: 28pt;
}

.app-info-sig-capitulo {
    position: absolute;
    top: 80%;
    left: 50%;
    text-align: center;
    /* background-color: rgba(120, 120, 120, 0.5); */
    height: 20%;
    width: 42%;
}

.app-title-sig-capitulo {
    color: #FFF;
    text-align: center;
    font-size: 30pt;
    font-family: 'Locator-Light';
}

.app-info-instrucciones {
    color: #FFF;
    text-align: center;
    font-size: 22pt;
    font-family: 'Locator-Light';
}

.app-info-tiempo-sig-capitulo {
    color: #FFF;
    text-align: center;
    font-size: 18pt;
    font-family: 'Locator-Light';
}

.app-info-live-horario {
    color: #FFF;
    width: 100%;
    text-align: center;
    font-size: 28pt;
}

div.app-info-live p label img {
    width: 12%;
    height: 12%;
}

.app-info-programa {
    position: absolute;
    top: 84%;
    left: 10%;
    text-align: left;
}

.app-info-programa p {
    margin-top: -0.6em;
}

.app-info-programa-title {
    color: #FFF;
    font-weight: bold;
    text-align: center;
    font-size: 26pt;
}

.app-info-programa-talento {
    color: #FFF;
    width: 100%;
    width: 100%;
    text-align: center;
    font-size: 21pt;
}

.app-info-programa-horario {
    color: #FFF;
    width: 100%;
    text-align: center;
    font-size: 21pt;
}
.app-info-programa-descripcion {
    color: #FFF;
    width: 100%;
    text-align: center;
    font-size: 21pt;
}


.Perfil {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.app-img-QR {
    width: 34%;
    left: 67%;
    top: 35%;
    position: absolute;
}

.app-version {
    color: #FFF;
    width: 50%;
    left: 12%;
    position: absolute;
    top: 90%;
}

.app-sismov {
    color: #FFF;
    width: 92%;
    text-align: right;
    position: absolute;
    top: 90%;
}

.app-back {
    color: #FFF;
    width: 10%;
    text-align: right;
    position: absolute;
    top: 76%;
    right: 18px;
}

.app-vinculado {
    position: absolute;
    top: 25%;
    left: 26%;
}

.app-perfil-nombre, .app-perfil-mail, .app-perfil-phone {
    color: #FFF;
    position: relative;
    top: -66px;
    left: 50px;
    font-size: 29pt;
}

.grid-test-noused {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    /*width: 100%;*/
    /* background-color: #000;*/
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0 0 10px;
    /*margin-left: 240px;*/
    /*margin-top: 5px;*/
    resize: horizontal;
    overflow: auto;
    height: 65%;
    height: 100vh;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    background-color: #000;
    padding: 10px 0 0 10px;
    margin-top: 5px;
    resize: horizontal;
    overflow: auto;
    height: 95%;
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto; */
    /* width: 100%; */
    /* height: 65%; */
}
.divCategoria {
    /* display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    background-color: #000;
    padding: 10px 0 0 10px;
    margin-top: 5px;
    resize: horizontal;
    overflow: auto;
    height: 65%; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto; 
    width: 100%;
    align-items: stretch;
    /* height: 65%;*/
}

.grid-serie {
    /* top: 600; */
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    /*width: 100%;*/
    /* background-color: #000;*/
    /* background-color: rgba(0, 0, 0, 0.8); */
    padding: 0px 0 0 10px;
    margin-left: 240px;
    /*margin-top: 5px;*/
    resize: horizontal;
    overflow: scroll;
    /* height: 65%;*/
    height: 100vh;
    padding-bottom: 300px;
}

#gridSerie span {
    color: #fff;
    font-family: 'Locator-Regular';
    padding-left: 500px;
    padding-top: 200px;
    font-size: 40pt;
}

.item-serie {
    width: 22%;
    height: 21%;
    margin: 0 20px 20px 0;
}

.item-blockbuster {
    width: 12%;
    height: 21%;
    margin: 0 20px 20px 0;
}

.item-blockbuster img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.item {
    width: 380px;
    height: 182px;
    margin: 0 20px 20px 0;
    
}

.item-busqueda {
    width: 23%;
    height: 60%;
    margin: 0 20px 20px 0;
}

::-webkit-scrollbar {
    display: none;
}

.item-serie img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.item img {
    width: 380px;
    height: 182px;
    border-radius: 3%;
}

/*.item>.img-temporada {
    width: 100%;
    height: 65%;
}*/

.item p {
    margin: 0.3em !important;
    text-align: left;
}

.item .nombreprograma {
    color: #fff;
    font-size: 22pt;
}

.item .nombretalento {
    color: #fff;
    font-size: 18pt;
}

.item .programacion {
    color: #fff;
    font-size: 18pt;
}

.item.active img {
    outline: 7px solid #fff;
}

.item.active div img {
    outline: 7px solid #fff;
}

.item-serie.active {
    outline: 7px solid #fff;
}

#gridSerieTemporada .item {
    height: 30%;
}

.gridprincipal {
    position: absolute;
    left: 10%;
    top: 20%;
    width: 87%;
    text-align: right;
    height: 80%;
}

.gridprincipal-serie {
    position: absolute;
    /*left: 0%;*/
    top: 0;
    bottom: 0;
    width: 100%;
    text-align: right;
    height: 100vh;
    /* background-color: rgba(0, 0, 0, 0.7); */
}

.MiRadioPrograma {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.MiSerieReproductor {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: center;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.MiSerieReproductorInterno {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.MiRadioVincula {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.vertical-menu {
    width: 33%;
    position: absolute;
    top: 23%;
    left: 58%;
    text-align: left;
}

#select-view, #select-viewTV {
    position: relative;
    padding: 2px;
}

/* Properties for horizontal menu */

#select-view li, #select-viewTV li {
    float: left;
    margin: 1px 8px;
    padding: 1px 2px;
    list-style-type: none;
    font-weight: 600;
    font-size: 30pt;
}

/* #select-view .olishow {} */

/* Properties for vertical menu */

#select-view .oli ul, #select-view .olishow ul, #select-viewTV .oli ul, #select-viewTV .olishow ul {
    display: block;
    position: absolute;
    margin: 1px auto 1px -8px;
    padding: 1px;
}

#select-view li ul li, #select-viewTV li ul li {
    position: relative;
    clear: both;
    width: 100%;
    margin: 1px 0;
    border: none;
    padding: 1px;
}

#select-view li:hover ul, #select-view .olishow ul, #select-viewTV li:hover ul, #select-viewTV .olishow ul {
    display: block;
    width: 100%
}

/* Links in sub-menu */

#select-view ul li a, #select-viewTV ul li a {
    display: block;
    margin: 0;
    font-weight: normal;
    padding: 1px;
    text-decoration: none;
    color: #fff;
    font-size: 25pt;
}

#select-view ul li a:hover, #select-view ul .vlishow a, #select-viewTV ul li a:hover, #select-viewTV ul .vlishow a {
    background-color: #fefefe;
    color: #000;
    text-align: left;
    font-size: 25pt;
}

.MiRadioReproductor {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.MiTVVincula {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.MiTV {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.MiTVPrograma {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.MiTVReproductor {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.Busqueda {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.BusquedaVincula {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.BusquedaTemporada {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.BusquedaReproductor {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 20;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
}

.app-nuestraprogramacion {
    position: relative;
    top: 20%;
    left: 10%;
    color: #fff;
    font-size: 32pt;
    font-weight: bold;
}
.label-miradio{
    color: #fff;
    font-size: 32pt;
    font-weight: bold;
    width: 100%;

    text-align: left;
    margin-bottom: 20px;
}

.app-vincula-lbl {
    position: relative;
    top: 250px;
    left: 80px;
    color: #fff;
    font-size: 25pt;
    font-weight: bold;
    width: 88%;
    display: inline-block;
}

.app-info-live-duration {
    color: #fff;
    margin-left: 34px;
}

.app-info-live-currenttime {
    color: #fff;
}

.text-duration-player {
    display: flex;
    justify-content: space-between;
}

#player-view {
    z-index: 10000;
}

.nombrecategoria {
    color: #fff;
    font-size: 28pt;
    font-family: 'Locator-Bold';
    padding: 0;
    /* font-weight: bold; */
}

.categoria {
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
}

.device {
    position: absolute;
    left: 8.3%;
    top: 60%;
    width: 40%
}

.wrapper {
    display: grid;
    grid-gap: 6px;
    grid-template-columns: [col] 75px [col] 75px [col] 75px [col] 75px [col] 75px [col] 75px;
    grid-template-rows: [row] auto [row] auto [row];
    background-color: #000;
    color: #444;
    width: 40%;
    position: absolute;
    top: 35%;
    left: 12%;
}

.wrapper1 span {
    font-size: 30px;
    margin-bottom: 10px;
    padding: 5px;
}

#secondCtrl {
    float: right;
    padding: 0px;
    position: relative;
    top: -316px;
    /* left: 60px; */
}

.wrapper1 {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 120px 120px 120px;
    grid-template-areas: "....... header header" "sidebar content content" "footer  footer  footer";
    background-color: #fff;
    color: #444;
}

.box1 {
    background-color: #444;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    font-size: 150%;
}

#destroy {
    border-color: #f44336;
    color: red;
    border-radius: 5px;
}

/* Green */

#update1 {
    border-color: #4CAF50;
    color: green;
}

#update2 {
    border-color: blue;
    color: green;
}

#pause {
    border-color: violet;
    color: blue;
}

#pause {
    border-color: black;
    color: pink;
}

#refresh {
    border-color: darkviolet;
    color: darkgrey;
}

#extend {
    border-color: darkred;
    color: darkgrey;
}

#shorten {
    border-color: darkred;
    color: darkgrey;
}

.box1:focus {
    text-decoration: none;
}

#buttonPos {
    padding-left: 39px;
    position: relative;
}

.box:focus {
    text-decoration: none;
    border: 5px solid red !important;
}

.wrapper span {
    font-size: 30px;
    position: absolute;
    left: 85px;
    margin-bottom: 10px;
    padding-top: 10px;
}

.box {
    background-color: #032F3F;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    font-size: 130%;
    text-align: center;
}

.empty {
    grid-column: col / span 2;
    grid-row: row 7;
}

.space {
    grid-column: col 3 / span 2;
    grid-row: row 7;
}

.remove {
    grid-column: col 5 / span 2;
    grid-row: row 7;
}

.search {
    position: relative;
    top: 24%;
    left: 12%;
    height: 8%;
    background-color: #032f3f;
    width: 477px;
    padding-top: 9px;
    padding-left: 19px;
}

.search-box {
    color: #fff;
    font-size: 24pt;
    font-weight: bold;
    background-color: #032f3f;
}

#gridBusqueda {
    width: 60% !important;
    position: absolute;
    left: 42%;
    top: 23%;
    height: 55%;
}

#gridBusqueda .item {
    width: 100% !important;
    height: 182px !important;
}

#gridBusqueda .item.item-podcast img {
    /* width: 380px !important; */
    height: 100%;
}

#gridBusqueda .item.item-serie img {
    /* width: 380px !important; */
    height: 100%;
}

#gridBusqueda .item.item-serie img {
    width: 380px !important;
}

#gridBusqueda .item.item-podcast img {
    width: 182px !important;
}

#gridBusqueda .item.item-blockbuster img {
    width: 182px !important;
}

.topweb {
    top: 0px;
    height: 50% important;
}

nav>ul>li>a>img {
    width: 60px;
    height: 60px;
    margin-left: 95px;
    margin-right: 95px;
    /* margin-bottom: 5pt; */
    align-items: center;
}

/* #top_slider {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(6, calc(50% - 40px));
    grid-template-rows: minmax(150px, 1fr);
    padding: 0 20px;
} */

/* .img-top-slider {
    width: 30%;
    height: 12rem;
} */

/*CSS para Menu LATERAL*/

/*@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);

}
@import url(https://fonts.googleapis.com/css?family=Titillium+Web:300);
*/

.contenedor__slider {
    position: relative;
    margin-left: 140px;
    margin-right: 20px;
    /* margin-right: 200px;  */
    width: 100%;
    margin-top: 20px;
    margin-bottom: 15px;
    /* background-color: rgba(0, 0, 0, 0.8); */
    height: 273px;
}

.contenedor__slider div {
    /* height: 22rem; */
    /* padding: 0px !important; */
}

.contenedor__slider div div {
    /* margin: 10px; */
    /* width: 10rem; */
    /* padding: 0px !important; */
    /* margin: 5px; */
    /* width: 400px !important; */
    /* border-radius: 10px; */
}

.slick-slide {
    /* width: 600px !important; */
}

div.slick-current.slick-center.active img {
    outline: 7px solid #fff;
    /* width: 590px;
    height: 293px; */
    /* margin-bottom: 20px !important; */
}

/* .contenedor__slider div div img {
    margin: 10px;
    width: 570px;
    height: 273px;
} */

.contenedor__slider div div img {
    margin: 10px;
    /* width: 273px;
    height: 273px; */
}

.contenedor__slider.slick-podcast div div img {
    width: 273px;
    height: 273px;
}

.contenedor__slider.slick-serie div div img {
    width: 570px;
    height: 273px;
}

.fa-2x {
    font-size: 2em;
}

.fa {
    position: relative;
    display: table-cell;
    width: 60px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    font-size: 20px;
}

.main-menu:hover, #main-menu.expanded {
    width: 500px;
    overflow: visible;
}

#main-menu.expanded li.dataPerfil {
    display: flex !important;
}

.main-menu {
    /*background: #212121;*/
    background-color: rgba(0, 0, 0, 0.8);
    border-right: 1px solid #a9a9a9a9;
    position: absolute;
    padding-top: 12rem;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 240px;
    overflow: hidden;
    -webkit-transition: width .05s linear;
    transition: width .05s linear;
    -webkit-transform: translateZ(0) scale(1, 1);
    z-index: 1000;
}

.main-menu li {
    position: relative;
    display: block;
    margin-bottom: 20px;
    /* width: 350px; */
}

.main-menu li>a {
    position: relative;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    color: #d0d2d3;
    font-family: 'Locator-Light';
    font-size: 27pt;
    text-decoration: none;
    -webkit-transform: translateZ(0) scale(1, 1);
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.main-menu .nav-icon {
    position: relative;
    display: table-cell;
    width: 60px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
}

.main-menu .nav-text {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    /*width: 190px;*/
    /* font-family: 'Titillium Web', sans-serif; */
    font-family: 'Locator-Bold';
    font-size: 35pt;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    /* white-space: pre; */
    /* font-weight: bold; */
}

.main-menu>ul.logout {
    position: absolute;
    left: 0;
    bottom: 0;
}

.no-touch .scrollable.hover {
    overflow-y: hidden;
}

.no-touch .scrollable.hover:hover {
    overflow-y: auto;
    overflow: visible;
}

a:hover, a:focus {
    text-decoration: none;
}

nav {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

nav ul, nav li {
    outline: 0;
    margin-bottom: 10px;
    padding: 0;
    /* margin-right: 10px; */
}

.main-menu .main-menu li:hover>a, nav.main-menu li.active>a, .dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus, .dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus, .no-touch .dashboard-page nav.dashboard-menu ul li:hover a, .dashboard-page nav.dashboard-menu ul li.active a {
    color: #fff;
    font-weight: bold;
    /* background-color: gray; */
}

li.active {
    /* background-color: #5fa2db;
    ; */
}

li.active a span {
    border-bottom: 5px solid #fff;
}

.area {
    float: left;
    background: #e2e2e2;
    width: 100%;
    height: 100%;
}

/* Series temporada nueva version */

.contenedor__temporada {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.4);*/
    /* padding-top: 680px; */
    /*
    padding-left: 240px;
    padding-right: 62px; */
    overflow: auto;
}

#contenedor__serie {
    margin-top: 100px;
    height: 520px;
    /* background-color: #4CAF50; */
}

.contenedor__interior {
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* background-color: #4CAF50; */
    /* padding-top: 20px; */
    /* padding-left: 40px; */
    padding-bottom: 20px;
    /* margin-bottom: 20px; */
    margin-left: 220px;
    /* padding-left: 10px; */
    margin-right: 62px;
    border-radius: 5px;
    /* width: 100%;
    height: 100%; */
    /* overflow: scroll; */
    /* margin-top: 240px; */
    /* margin-top: 680px; */
}

.contenedor__botones {
    display: flex;
    flex-direction: row;
}

.boton__icono {
    background-color: rgba(0, 0, 0, 0.66);
    height: 80px;
    display: flex;
    /* flex-flow: row wrap; */
    align-items: center;
    min-width: 380px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 5px;
    margin-right: 30px;
}

.boton__icono#btn__reproducir.active img, .boton__icono#btn__trailer.active img {
    content: url('assets/botones/Controles_Reproducir.png');
    width: 50px;
    height: 50px;
}

.boton__icono#btn__milista.active.agregar img {
    content: url('assets/botones/Controles_MiLista_oscuro.png');
    width: 50px;
    height: 50px;
}

.boton__icono#btn__milista.active.eliminar img {
    content: url('assets/botones/EliminarDeMiLista_Oscuro.png');
    width: 50px;
    height: 50px;
}

.boton__icono.active span {
    color: rgba(0, 0, 0, 0.66);
    font-weight: bold;
    font-size: 30pt;
}

.boton__icono.active {
    background-color: #d0d2d3;
}

.contenedor__menu {
    /* margin-left: 40px; */
}

.contenedor__menu a.active {
    /* color: red; */
    border-bottom: 10px solid #fff;
    font-weight: bold;
}

.boton__icono span {
    font-family: 'Locator-Regular';
    font-size: 30pt;
    color: #fff;
    margin-left: 15px;
}

.contenedor__detalles {
    color: #fff;
    margin-top: 20px;
    /* background-color: rgba(0, 0, 0, 0.4); */
    padding-left: 20px;
}

.titulo__serie {
    font-size: 32pt;
    font-weight: bold;
}

.contenedor__detalles .descripcion__serie {
    font-size: 24pt;
    /* font-weight: normal; */
    margin-right: 10px;
    font-family: 'Locator-Light';
}

.contenedor__detalles .detalles__serie {
    font-size: 20pt;
    font-family: 'Locator-Regular';
    color: #d0d2d3;
}

.contenedor__menu a {
    font-size: 26pt;
    font-weight: lighter;
    color: #d0d2d3;
    text-decoration: none;
    margin-right: 20px;
}

.contenedor__episodios {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 30% 70%;
}

.contenedor__episodios, .contenedor__detalleSerie {
    padding-top: 10px;
    height: 800px;
}

.contenedor__detalleSerie {
    display: grid;
    grid-template-columns: 50% 50%;
    /* grid-template-rows: 700px; */
    column-gap: 100px;
}

.contenedor__detalleSerie div p {
    /* line-height: 10px; */
}

.contenedor__detalleSerie div p {
    color: #fff;
    font-family: 'Locator-Light';
    font-size: 32px;
}

.itemTemporada {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    margin-left: 10px;
}

.seccionTemporadas div.active {
    border-left-style: solid;
    border-left-width: 8px;
    border-left-color: #fff;
    padding-left: 10px;
}

.titulo__temporada {
    color: #fff;
    font-size: 28pt;
    font-family: 'LocatorBold';
}

.numero__capitulos {
    color: #d0d2d3;
    font-family: 'Locator-Regular';
    font-size: 22pt;
}

.seccion_capitulos {
    /* overflow-y: scroll;
    overflow: scroll;
    width: auto;
    height: auto; */
    /* display: flex;
    flex-direction: column;
    flex-grow: 1; */
    overflow-y: auto;
    width: 100%;
    height: 600px;
}

.itemCapitulo {
    display: grid;
    grid-template-rows: 240px;
    margin-bottom: 30px;
    margin-left: 10px;
    margin-top: 10px;
    padding: 20px
}

.itemCapitulo.item-podcast {
    grid-template-columns: 25% 75%;
}

.itemCapitulo.item-series {
    grid-template-columns: 40% 60%;
}

div.itemCapitulo.active img {
    outline: 7px solid #fff;
}

div.itemCapitulo.active {
    /*background-color: rgba(0, 0, 0, 0.5);*/
    border-radius: 10px;
}

.imagenCapitulo {
    margin: 0 !important;
    padding: 0 !important;
}

.imagenCapitulo img {
    border-radius: 10px;
    margin-top: 10px;
    padding: 0 !important;
}

.imagenCapitulo.img-series img {
    width: 380px;
    height: 182px;
}

.imagenCapitulo.img-podcast img {
    width: 182px;
    height: 182px;
    margin-left: 50px;
}

.itemCapitulo.lock img {
    opacity: 0.3;
}

.detalleCapitulo {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: initial;
}

.detalleCapitulo .tituloCapitulo {
    font-size: 24pt;
    font-family: 'Locator-Bold';
    font-weight: bold;
    color: #d0d2d3;
    text-align: start;
    width: 100%;
    /* text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; */
}

.itemCapitulo.lock .tituloCapitulo, .itemCapitulo.lock .tituloMinutos, .itemCapitulo.lock .descripcionCapitulo {
    color: #555555;
}

.detalleCapitulo .tituloMinutos {
    font-size: 22pt;
    font-family: 'Locator-Regular';
    color: #d0d2d3;
}

.detalleCapitulo .descripcionCapitulo {
    font-size: 20pt;
    font-family: 'Locator-Light';
    color: #d0d2d3;
    text-align: inherit;
}

.descripcion__temporada {
    position: relative;
    width: 1100px;
    height: 300px;
    /* background-color: ; */
    /* background-color: rgba(0, 0, 0, 0.5); */
    margin-bottom: 30px;
    margin-top: 60px;
    border-radius: 10px;
    margin-left: 750px;
    /* background-color: #4CAF50; */
    overflow: hidden;
}

.titulo__detalle__temporada {
    font-size: 28pt;
    color: #d0d2d3;
    font-family: 'LocatorBold';
    margin-bottom: 20px;
}

.datos__detalle p {
    color: #fff;
    font-size: 28pt;
    font-family: 'Locator-Light';
}

.descripcion__detalle__temporada {
    font-size: 24pt;
    color: #d0d2d3;
    font-family: 'Locator-Light';
}

.informacion__serie {
    margin-top: 2%;
    margin-left: 52%;
    /* margin-bottom: 1%; */
    width: 840px;
    color: #fff;
    text-align: start;
    /* background-color: rgba(0, 0, 0, 0.1); */
    height: 210px;
}

.informacion__serie .tituloInformacionSerie {
    font-family: 'LocatorBold';
    font-size: 30pt;
}

.informacion__serie .descripcionInformacionSerie {
    font-family: 'LocatorRegular';
    font-size: 28pt;
}

.informacion__serie .extraInformacionSerie {
    font-size: 24pt;
    color: #d0d2d3;
    font-family: 'LocatorLight';
}

.dataPerfil {
    display: none;
    margin-left: 240px !important;
    flex-direction: column;
    align-items: center !important;
    height: 200px;
}

/* .dataPerfil.active {
    display: flex !important;
} */

.dataPerfil.active p {
    font-weight: bold;
    color: #fff;
    border-bottom: 5px solid #fff;
}

.dataPerfil img {
    /* float: left; */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* margin-right: 30px;
    margin-left: 10px; */
}

.dataPerfil p {
    color: #d0d2d3;
    /* text-align: left;
    align-self: center; */
    /* padding-top: 0px; */
    /* font-size: 26pt; */
    font-family: 'Locator-Light';
    font-size: 27pt;
}

.cards {
    /* background: #DBD0BC; */
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: auto;
    /* width: 100%; */
    height: auto;
    /* padding-right: 200px; */
    /* margin-right: 60px; */
    /* padding-right: 60px; */
    /* min-height: ; */
    /* width: 100%; */
}

.card-blockbuster {
    width: 148px;
    height: 182px;
    margin: 10px;
}

.cards .card:first-child {
    margin-left: 10px;
}

.cards .card:last-child {
    margin-right: 2slider0px;
    /* border: 10px solid red; */
    /* padding-right: 30px; */
}

.cards .card-serie {
    width: 380px;
    height: 182px;
    /* margin-right: 10px;
    margin-left: 10px; */
    margin: 10px;
    /* padding: 10px; */
}

.cards .card-podcast {
    width: 182px;
    height: 182px;
    /* margin-right: 10px;
    margin-left: 10px; */
    margin: 10px;
    /* padding: 10px; */
}

.cards div img {
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.cards div.active {
    outline: 7px solid #fff;
    /* width: 620px;
    height: 330px; */
    /* margin: 20px; */
}

#listaProtagonista, #listaElenco {
    display: flex;
    flex-direction: row;
}

.line-cv {
    height: 10px;
    /* background-color: red; */
    margin: 0;
    padding: 0;
}

.line-cv.line-series {
    width: 380px;
}
.line-cv.line-cap-uni {
    width: 380px;
}

.line-cv.line-podcast {
    margin-left: 50px;
    width: 182px;
}

.line-cv-time {
    /* width: 70%;
    height: 5px;; */
    /* height: 10px; */
    height: 10px !important;
    background-color: red;
}

.opacy-screen {
    display: none;
    position: fixed;
    /* Stay in place */
    z-index: 100;
    /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0, 0.6);
    /* background-color: rgba(0, 0, 0, 0.7); */
    /* Fallback color */
}

p.categoria {
    margin-top: 10px;
    margin-bottom: 0px;
}

.cDescripcionBusqueda {
    /* padding-top: 20px; */
   
    padding-right: 40px;
    /* background-color: #4CAF50; */
}
.cDescripcionBusqueda.busSerie{
    width: 65%;
}
.cDescripcionBusqueda.busPodcast{
    width: 80%;
}

.cImagenBusqueda.cImagenSerie{
    width: 35%;
}
.cImagenBusqueda.cImagenBlockboster{
    width: 20%;
}
.cImagenBusqueda.cImagenPodcast{
    width: 20%;
}
.skip-intro{
    position: absolute;
    top: 0%;
    left: 70%;
    width: 30%;
    height: 20%;
    color: #b9bbbd;
    background-color: rgba(152, 152, 153, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 40000;

}

.skip-intro .btn-omitir-intro{
    color: #242527;
    background-color: #d0d2d3;
    border-radius: 10px;
    font-size: 28px;
    width: 450px;
    margin-left: 70px;
    margin-top: 90px;
    padding: 5px;
    display: flex;
    align-items: center;
   
}
.skip-intro-video{
    position: absolute;
    top: 0%;
    left: 70%;
    width: 30%;
    height: 20%;
    color: #b9bbbd;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    z-index: 40000;
}
.skip-intro-video .btn-omitir-intro-video{
    color: #242527;
    background-color: #d0d2d3;
    border-radius: 10px;
    font-size: 28px;
    width: 450px;
    margin-left: 70px;
    margin-top: 90px;
    padding: 5px;
    display: flex;
    align-items: center;
}

.video-background{
    position: absolute;
    left: 8%;
    top: 30%;
    width: 40%;
    height: 60%;
    text-align: left;
    border: none;
    /* border-radius: 50px; */
    background-color: #000; 
}
.video-background video{
    width: 100%;
    height: 100%;
}
.btns-player{
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: row;
    z-index: 40000;
    align-content: flex-start;
    margin-left: 50px;
    margin-top: 50px;
}
.icon-menu-player{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icon-menu-player div{
    color: white;
    font-family: "Locator-Light";
    font-weight: bold;
    font-size: 20px;
}
.btns-player div img{
    width: 120px;
    height: 120px;
}
.card-subtitle{
    position: absolute;
    left: 80%;
    top: 0%;
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 40000;
    background-color: rgba(88, 88, 88, 0.9);
    color: white;
    text-align: center;
    font-size: 38px;
    font-family: "LocatorRegular";
    padding-top: 2%;

}
.content-subtitle{
    margin-top: 20px;
}
.content-subtitle .subtitle{
    display: flex;
    flex-direction: row;
    margin-left: 20px;
}
.subtitle-image{
    width: 40px;
    height: 40px;
    display: none;
}
.container-image-subtitle{
    width: 50px;
}
.subtitle-text{
    margin-left: 20px;
    padding-left: 28px;
    font-family: "LocatorLight";
}
div.subtitle.active .subtitle-text{
    /* display: flex; */

    border-left: 8px white solid;
    padding-left: 20px;
    font-weight: bold;
}
.subtitle{
    margin-top: 10px;
}

.btns-player-podcast{
    position: absolute;
    left: 47%;
    top: 23%;
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: row;
    z-index: 40000;
    align-content: flex-start;
    margin-left: 50px;
    margin-top: 50px;
    /* background-color: #b9bbbd !important; */
}
.btns-player-podcast div img{
    width: 120px;
    height: 120px;
}
.subtitle-audio{
    
        position: absolute;
        left: 48%;
        top: 40%;
        width: 46%;
        height: 16%;
        display: flex;
        flex-direction: row;
        z-index: 40000;
        align-content: flex-start;
        margin-left: 50px;
        margin-top: 50px;
        background-color: rgba(255, 255, 255, 0.8);
        font-size: 40px;
        padding: 20px;
}
#meta {
    clear: both;
    width: 480px;
    color: #C00;
    font-weight: bold;
    font-size: 1.2em;
    margin: 1em;
    display: none;
  }

  .card-clasificacion{
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    max-width: 67%;
    height: auto;
    display: flex;
    flex-direction: row;
    z-index: 40000;
    align-content: flex-start;
    margin-left: 50px;
    margin-top: 50px;
    color: #fff;
    border-left: 6px red solid;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    font-family: "LocatorLight";
    font-size: 34px;
    background-color: rgba(0, 0, 0, 0.8);
    
  }

  video::cue {
    font-size: 48px;
  }

  video::-webkit-media-text-track-display {
    padding-bottom: 100px;
  }

  .card-audio{
    position: absolute;
    left: 80%;
    top: 0%;
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 40000;
    background-color: rgba(88, 88, 88, 0.9);
    color: white;
    text-align: center;
    font-size: 38px;
    font-family: "LocatorRegular";
    padding-top: 2%;
    padding-left: 100px;

}
.content-audio .item-audio.active{
border-left: 8px white solid;
}

.card-clasificacion-podcast{
    position: absolute;
    left: 5.4%;
    top: 25.4%;
    width: auto;
    max-width: 40.1%;
    height: auto;
    display: flex;
    flex-direction: row;
    z-index: 40000;
    align-content: flex-start;
    margin-left: 50px;
    margin-top: 50px;
    color: #fff;
    border-left: 6px red solid;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    font-family: "LocatorLight";
    font-size: 34px;
    background-color: rgba(0, 0, 0, 0.8);
    
  }
  .slidercvprincipal{
      width: 65%;
      height: 10px;
      background-color:rgba(88, 88, 88, 0.9);
      position: absolute;
      left: 10%;
      top: 80%;
      width: 43.5%;
      /* height: 6; */
      text-align: left;
  }
  .slidercvinterior{
    width: 0%;
    height: 10px;
    background-color:red;

  }
  .slidercvprincipaltv{
    width: 65%;
    height: 10px;
    background-color:rgba(88, 88, 88, 0.9);
    position: absolute;
    left: 10%;
    top: 80%;
    width: 43.5%;
    /* height: 6; */
    text-align: left;
}
.slidercvinteriortv{
  width: 0%;
  height: 10px;
  background-color:red;

}

  /*Estilo para las diapositivas anchas */
.wide-slide {
    width: 607px !important;
  }
  
   /*Estilo para las diapositivas estrechas */
  .narrow-slide {
    width: 237px !important;
    margin-left: 10px !important;
    margin-right: 70px !important;
  }

  #seccionTemporadas {
    max-height: 475px; /* Ajusta esta altura según tus necesidades */
    overflow-y: auto;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    scrollbar-width: thin; /* Para navegadores que soportan esta propiedad */
    /*scrollbar-color: #888 #ccc; /* Color del scroll */
}
.app-info-programa-horario-mi-radio {
    color: #FFF;
    width: 100%;
    text-align: center;
    font-size: 21pt;
}