/*
 * Copyright 2016 Google Inc.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

* {
  box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: 'Helvetica', 'Verdana', sans-serif;
  font-weight: 400;
  font-display: optional;
  color: #444;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html {
 /*    overflow: hidden;
     */
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  background: rgba(0, 0, 0, 0.3); }

.header {
    width: 100%;
    
    color: #FFF;
    background: #3F51B5;
    position: fixed;
    font-size: 20px;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 2px 9px 1px rgba(0, 0, 0, 0.12), 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    padding: 10px 10px 10px 10px;
    will-change: transform;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
    transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
    transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
    transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s, -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
    z-index: 500;
}
  .header .headerButton {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    text-indent: -30000px;
    overflow: hidden;
    opacity: 0.54;
    -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
    transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
    border: none;
    outline: none;
    cursor: pointer; }
 

.header__title {
  font-weight: 400;
  font-size: 20px;
  margin: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.loader {
  left: 50%;
  top: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  .loader #spinner {
    box-sizing: border-box;
    stroke: #673AB7;
    stroke-width: 3px;
    -webkit-transform-origin: 50%;
            transform-origin: 50%;
    -webkit-animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite;
            animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite; }

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  to {
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg); } }

@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  to {
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg); } }

@-webkit-keyframes line {
  0% {
    stroke-dasharray: 2, 85.964;
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    stroke-dasharray: 65.973, 21.9911;
    stroke-dashoffset: 0; }
  100% {
    stroke-dasharray: 2, 85.964;
    stroke-dashoffset: -65.973;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

@keyframes line {
  0% {
    stroke-dasharray: 2, 85.964;
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    stroke-dasharray: 65.973, 21.9911;
    stroke-dashoffset: 0; }
  100% {
    stroke-dasharray: 2, 85.964;
    stroke-dashoffset: -65.973;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

.main {
    padding-top: 60px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    
    
}

.dialog-container {
  background: rgba(0, 0, 0, 0.57);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
  transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1); }

.dialog-container--visible {
  opacity: 1;
  pointer-events: auto; }

.dialog {
  background: #FFF;
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px rgba(0, 0, 0, 0.48);
  min-width: 280px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) translateY(30px);
          transform: translate(-50%, -50%) translateY(30px);
  -webkit-transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s, -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s; }

.dialog > div {
  padding-left: 24px;
  padding-right: 24px; }

.dialog-title {
  padding-top: 20px;
  font-size: 1.25em; }

.dialog-body {
  padding-top: 20px;
  padding-bottom: 24px; }
  .dialog-body select {
    width: 100%;
    font-size: 2em; }

.dialog-buttons {
  padding: 8px !important;
  float: right; }

.card {
    padding: 0px;
    position: relative;
    box-sizing: border-box;    
    background: #fff;
    border-radius: 13px;
    margin:5px 5px 5px 5px; 
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    margin-left:auto;
    margin-right:auto;
}

.ad-card {

}



.wrapper {
    position: relative;
    overflow: hidden;
    border-radius:13px;
}
  
    .wrapper .poster {
        display: block;
        margin: 0px auto;
        width: 100%;            /*  Este par de valores determinan   */
        padding-bottom: 56.25%; /*  el Aspect Ratio de 16:9          */
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        background-position: center;
    }

        .wrapper .poster .watermark {
            position: absolute;
            width: 100%;
            padding-bottom: 56.25%;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

            .wrapper .poster .watermark .videoframe {
                position: absolute;
                width: 100%;
                padding-bottom: 56.25%;
                overflow: hidden;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

    .wrapper .footer {
        color: #000;
        left: 0;
        width: 100%;
        display:inline-flex;
    }

.footer .share {
    margin-left: 0px;
    vertical-align: middle;
    position: absolute;
    right: 0px;
    display: flex;
    vertical-align: middle;
}
.fbbutton {
    padding:5px;
    max-height:34px;
}
.twbutton {
    padding: 5px;
    max-height: 34px;
}
.wrapper .footer .location {
    font-size: 1.3em;
    /*      text-transform: uppercase;   */
    font-family: "Poppins","Roboto","Arial",sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    background-color: #5F71e5;
    background-image: url("https://master.letio.com/libs/img/movil-play.png");
    background-repeat: no-repeat;
    background-size: 17px 17px;
    background-position-x: 5px;
    background-position-y: 8px;
    border-color: #aa1f22;
    padding: 5px 68px 5px 27px;
    width: 100%;
    
}


       
.info {
    display: flex;
    vertical-align: middle;
    padding: 5px 5px 5px 5px;
    width: 100%;
}

    

    .info .start:before {
        content: "Inicia: ";
        color: #888;
        padding-left: 10px;
        vertical-align: middle;
    }

    .info .duration:before {
        content: "Dura: ";
        color: #888;
        padding-left: 30px;
        vertical-align: middle;
        height: 15px;
    }

.weather-forecast .future {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; 
  padding:5px 5px 5px 5px;
}
  .weather-forecast .future .oneday {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center; }
    .weather-forecast .future .oneday .icon {
      width: 40px;
      height: 40px;
      margin-left: auto;
      margin-right: auto; }
    .weather-forecast .future .oneday .temp-high, .weather-forecast .future .oneday .temp-low {
      display: inline-block; }
    .weather-forecast .future .oneday .temp-low {
      color: #888; }
.weather-forecast .icon {
    background-repeat: no-repeat;
    background-size: contain;
}

    .weather-forecast .icon.clear-day {
        background-image: url("img/play.svg");
    }

    .weather-forecast .icon.clear-night {
        background-image: url("../../images/clear.png");
    }

    .weather-forecast .icon.rain {
        background-image: url("../../images/rain.png");
    }

    .weather-forecast .icon.snow {
        background-image: url("../../images/snow.png");
    }

    .weather-forecast .icon.sleet {
        background-image: url("../../images/sleet.png");
    }

    .weather-forecast .icon.windy {
        background-image: url("img/wind.png");
    }

    .weather-forecast .icon.fog {
        background-image: url("../../images/fog.png");
    }

    .weather-forecast .icon.cloudy {
        background-image: url("../../images/cloudy.png");
    }

    .weather-forecast .icon.partly-cloudy-day {
        background-image: url("../../images/partly-cloudy.png");
    }

    .weather-forecast .icon.partly-cloudy-night {
        background-image: url("../../images/partly-cloudy.png");
    }

    .weather-forecast .icon.thunderstorms {
        background-image: url("../../images/thunderstorm.png");
    }

/* start of desktop styles */

@media screen and (max-width: 4400px) {
    /* start of large tablet styles */
    .card {
        width: 640px;
        margin-top: 5px;
        margin-bottom: 100px;
    }
}
/*  340x5 */
@media screen and (max-width: 2100px) {
    /* start of large tablet styles */
    .card {
        width: 640px;
        margin-top: 5px;
        margin-bottom: 50px;
    }
}
/*  340x4 */ 
@media  (max-width: 1750px) {
    /* start of large tablet styles */
    .card {
        width: 640px;
        margin-top: 5px;
        margin-bottom: 50px;
    }
}

/*  340x4 */ 
@media (max-width: 1360px) {
    /* start of large tablet styles */
    .card {
        width: 640px;
        margin-top: 5px;
        margin-bottom: 50px;
    }
}
/*  340x3 */ 
@media (max-width:1280px) {
    /* start of medium tablet styles */
    .card {
        width: 640px;
        margin-top: 5px;
        margin-bottom: 25px;
    }
}
/*  340x2 */ 
@media (max-width: 660px) {
    /* start of phone styles */
    .card {
        width: 97%;
        margin-top: 5px;
        margin-bottom: 15px;
    }
}

@media (max-width: 320px) {
    /* start of phone styles */
    .card {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

/*
@media (max-width: 450px) {
    .weather-forecast .date, .weather-forecast .description {
        font-size: 0.9em;
    }

    .weather-forecast .current .icon {
        width: 96px;
        height: 96px;
    }

    .weather-forecast .current .visual {
        font-size: 3em;
    }

    .weather-forecast .future .oneday .icon {
        width: 32px;
        height: 32px;
    }
}
    */


.mdl-button {
  background: transparent;
  border: none;
  border-radius: 2px;
  color: black;
  position: relative;
  height: 36px;
  margin: 0;
  min-width: 64px;
  padding: 0 16px;
  display: inline-block;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
  will-change: box-shadow;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 36px;
  vertical-align: middle; }
  .mdl-button::-moz-focus-inner {
    border: 0; }
  .mdl-button:hover {
    background-color: rgba(158, 158, 158, 0.2); }
  .mdl-button:focus:not(:active) {
    background-color: rgba(0, 0, 0, 0.12); }
  .mdl-button:active {
    background-color: rgba(158, 158, 158, 0.4); }
  .mdl-button.mdl-button--colored {
    color: #3f51b5; }
    .mdl-button.mdl-button--colored:focus:not(:active) {
      background-color: rgba(0, 0, 0, 0.12); }

.mdl-button--primary.mdl-button--primary {
  color: #3f51b5; }
  .mdl-button--primary.mdl-button--primary .mdl-ripple {
    background: white; }
  .mdl-button--primary.mdl-button--primary.mdl-button--raised, .mdl-button--primary.mdl-button--primary.mdl-button--fab {
    color: white;
    background-color: #3f51b5; }



.Hour {
    width: 70px;
    height: 20px;
    background-color: #d0d0d0;
    color: navy;
    text-decoration-style: solid;
    display: inline-block;
    cursor: pointer;
    text-align: left;
    vertical-align: middle;
    padding-left: 0px;
    margin-top: 5px;
    margin-left: 10px;
}

.Minute {
    width: 50px;
    height: 20px;
    background-color: #e0e0e0;
    color: navy;
    text-decoration-style: solid;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    margin-top: 5px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 10px; /* 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.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    width: 320px;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }


.bottomBar {
    display: inline-flex;    
    margin: 5px 5px 5px 5px;
}

.btnShowModal {
    border-radius: 5px;
    background-color: cornflowerblue;
    text-align: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding-top: 3px;
    display: inline-block;
}


.btn40 {
    border-radius: 5px;
    background-color: cornflowerblue;
    text-align: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding-top: 3px;
    display: inline-block;
    margin-left: 5px;

    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 32px 32px;
}

    .btn40.btnHome {background-image: url(../../img/home-white.png);}
    .btn40.btnChat {
        background-image: url(../../img/chat-white.png);
    }
    .btn40.btnVideoConf {
        background-image: url(../../img/video-white.png);
    }
    .btn40.btnWhatsApp {
        background-image: url(../../img/WhatsApp.png);
    }


.btnPlayPause {
    border-radius: 5px;
    background-color: cornflowerblue;
    text-align: center;
    cursor: pointer;
    width: 80px;
    height: 40px;
    padding-top: 3px;
    margin-left: 5px;
    display: inline-block;
}

.btnPlayLive {
    border-radius: 5px;
    background-color: cornflowerblue;
    text-align: center;
    cursor: pointer;
    width: 120px;
    height: 40px;
    padding-top: 3px;
    margin-left: 5px;
    display: inline-block;
    color:white;
}

.btnBarAnchor {
    display: block;
    border: none;
    height: 60px;
    margin: 0;
    padding: 0;
    position: relative;
    visibility: visible;
    width: 100%;
    background-color: transparent;
}

.btnBarAnchorExpand {
    display: inline-table;
    border: none;
    height: 60px;
    margin: 0;
    padding: 0;
    position: relative;
    visibility: visible;
    width: 100%;
    background-color: transparent;
}

.btnBarCover {
    position: center;
    left: 10px;
    top: 5px;
    width: 100%;
    height: 50px;
    background-color: rgba(0,10,50,0.9);
}

/*
    En el siguiente portal hay un agilizador de CSS para botones tipo Enlace
    https://www.bestcssbuttongenerator.com/#/4
<a href="#" class="myButton" > green</a >
    */
.myButton {
    box-shadow: 3px 4px 15px -7px #9fb4f2;
    background: linear-gradient(to bottom, #7892c2 5%, #476e9e 100%);
    background-color: #7892c2;
    border-radius: 4px;
    border: 1px solid #4e6096;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 13px;
    font-weight: bold;
    padding: 2px 5px;
    text-decoration: none;
    text-shadow: 9px 8px 12px #283966;
    margin-left: 5px;
}

.myButton:hover {
    background: linear-gradient(to bottom, #476e9e 5%, #7892c2 100%);
    background-color: #476e9e;
}

.myButton:active {
    position: relative;
    top: 1px;
}

.divSubSongs {
    text-align: left; 
    display: inline-block;
    background-color: #00194226;
    border-radius: 5px;
 }

        