@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
html {
  height: 100vh;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#contenedorbody {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 50px 1fr;
      grid-template-rows: 50px 1fr;
  overflow: hidden;
}

#divPrincipal {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  -ms-grid-rows: 100px auto 100px;
      grid-template-rows: 100px auto 100px;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
  padding: 0%;
  margin: 0px 10%;
  margin-top: 0px;
  border: 0px;
  overflow: hidden;
}

header {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  display: -ms-grid;
  display: grid;
  height: 100px;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 50% 50%;
      grid-template-rows: 50% 50%;
  background-image: -webkit-gradient(linear, left top, right top, from(#47748f), to(#47748f));
  background-image: linear-gradient(to right, #47748f, #47748f);
  border-radius: 10px;
}

#estaciones {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  width: 100%;
  margin: 20px 0%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto auto;
      grid-template-columns: auto auto auto auto auto;
  -ms-grid-rows: 60px;
      grid-template-rows: 60px;
  grid-gap: 30px;
}

.estacionBoton {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#47748f), to(#47748f));
  background: linear-gradient(to right, #47748f, #47748f);
  color: white;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  border-radius: 20px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.451);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.451);
  cursor: pointer;
}

#buscador {
  -ms-grid-row-align: center;
      align-self: center;
  display: -ms-grid;
  display: grid;
}

#cajaBuscador {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  width: 80%;
  border: 2px solid #929292;
  background-color: #c2c2c2;
  background-image: url("../img/Lupa.svg");
  background-color: rgba(255, 255, 255, 0);
  color: whitesmoke;
  background-position: 0px 4px;
  /* Position the search icon */
  background-repeat: no-repeat;
  height: 30px;
  border-radius: 5px;
}

#dashboard {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 70px auto;
      grid-template-rows: 70px auto;
  margin: 10px 0%;
  border: 5px #e4e4e4 solid;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.451);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.451);
  overflow: hidden;
}

#cabeceraDashboard {
  width: 100%;
  height: 70px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% (5%)[3] (15%)[4];
      grid-template-columns: 25% repeat(3, 5%) repeat(4, 15%);
  -ms-grid-rows: 30px 20px 20px;
      grid-template-rows: 30px 20px 20px;
}

#cabeceraDashboard div:nth-child(n) {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

#contenidoDashboard {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-auto-rows: 25px;
  overflow-y: auto;
}

#contenidoDashboard .filaDashboard:hover {
  background-color: #e6e5fc;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  font-weight: 800;
  z-index: 10;
}

#contenidoDashboard .filaDashboard:hover .casillaFalse:nth-child(n) {
  background-color: #f5bebe;
}

#contenidoDashboard .filaDashboard:hover .casilla:nth-child(3) {
  background-color: #fdfdfd;
}

#contenidoDashboard .filaDashboard:hover .casilla:nth-child(5) {
  background-color: white;
}

#contenidoDashboard .filaDashboard:hover .casilla.noInfo:nth-child(n) {
  background-color: #f3d10d;
}

.filaDashboard {
  padding: 0px;
  width: 100%;
  min-height: 20px;
  max-height: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% (5%)[3] (15%)[4];
      grid-template-columns: 25% repeat(3, 5%) repeat(4, 15%);
  -ms-grid-rows: 20px;
      grid-template-rows: 20px;
  -ms-flex-line-pack: center;
      align-content: center;
}

.filaDashboard:nth-of-type(odd) {
  background: white;
}

.filaDashboard:nth-of-type(even) {
  background: #e0e0e0;
}

#dashboardEstacion {
  color: white;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  background-image: -webkit-gradient(linear, left top, right top, from(#47748f), to(#47748f));
  background-image: linear-gradient(to right, #47748f, #47748f);
}

#tituloColNombre {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  background-color: #a1a1a1;
}

#tituloColANT {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  background-color: #c2c2c2;
}

#tituloColPR {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  background-color: #c2c2c2;
}

#tituloColPECOS {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  background-color: #9e9e9e;
}

#tituloCol1er {
  -ms-grid-column: 5;
  -ms-grid-column-span: 1;
  grid-column: 5/6;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  background-color: #9e9e9e;
}

#tituloCol2do {
  -ms-grid-column: 6;
  -ms-grid-column-span: 1;
  grid-column: 6/7;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  background-color: #9e9e9e;
}

#tituloColDiasAnt {
  -ms-grid-column: 7;
  -ms-grid-column-span: 1;
  grid-column: 7/8;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  background-color: #9e9e9e;
}

#tituloColPRAno {
  -ms-grid-column: 8;
  -ms-grid-column-span: 1;
  grid-column: 8/9;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
  background-color: #9e9e9e;
  font-size: 12px;
}

#tituloColAno {
  color: white;
  -ms-grid-columns: 30px 1fr 30px;
      grid-template-columns: 30px 1fr 30px;
  text-align: center;
  -ms-grid-column: 2;
  -ms-grid-column-span: 7;
  grid-column: 2/9;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  background-color: #6599b8;
}

.casilla {
  font-size: 12px;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
}

.casillaNombre {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 1fr 40px;
      grid-template-columns: 40px 1fr 40px;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: left;
  font-weight: 700;
  padding-left: 0px;
}

.casillaNombre div:nth-child(2) {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.casillaFalse {
  color: #fc4646;
}

.noInfo {
  -ms-grid-column: 2;
  -ms-grid-column-span: 7;
  grid-column: 2 / 9;
  background-color: #f3d10d;
  font-weight: 500;
}

.noInfo .tag:nth-of-type(1) {
  font-weight: 500;
  background-color: #f3d10d;
  color: #494949;
}

#anoAnterior {
  cursor: pointer;
  background-image: url("img/atras.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#anoSiguiente {
  cursor: pointer;
  background-image: url("img/adelante.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#footer {
  vertical-align: middle;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

#contenedorModal {
  position: fixed;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  height: 0%;
  width: 100%;
  z-index: 20;
  /* Sit on top */
  left: 0px;
  top: 107px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow-y: hidden;
}

#contenedorModal #fondoModal {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
  z-index: 20;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

#contenedorModal .modal {
  z-index: 21;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
  -ms-grid-column-align: center;
      justify-self: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 30px (20px)[3] 30px (20px)[2] 30px (20px)[4];
      grid-template-rows: 30px repeat(3 20px) 30px repeat(2 20px) 30px repeat(4 20px);
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  height: 373px;
  background-image: -webkit-gradient(linear, left top, right top, from(#47748f), to(#47748f));
  background-image: linear-gradient(to right, #47748f, #47748f);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  color: rgba(255, 255, 255, 0);
  border: 0px;
  margin: 40px auto;
  text-align: center;
}

#contenedorModal .textoModal {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 18px;
  color: white;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
  font-family: "Montserrat", sans-serif;
  margin: 0px;
  text-align: center;
}

#contenedorModal .OK {
  display: block;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
  font-size: 24px;
  font-weight: bold;
  color: #e7e7e7;
  width: 95px;
  height: 31px;
  background-color: rgba(255, 255, 255, 0);
  margin: 0px auto;
  border: 0px;
}

.NC {
  width: 35px;
  height: 12px;
  background-color: #b1b1b1;
  color: black;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: end;
      justify-self: end;
  margin-right: 5px;
}

.colorEstacion {
  width: 35px;
  height: 12px;
  background-color: #000000;
  color: white;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: end;
      justify-self: end;
  margin-right: 5px;
}

.tag {
  display: -ms-grid;
  display: grid;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: transparent;
  color: white;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0px 5px;
  text-align: center;
  vertical-align: middle;
  font-size: 1em;
  font-weight: 600;
  -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border-radius: 3px;
}
.colorMMLP {
  background-color: #5bc0de;
}

.colorMMSD {
  background-color: #5CB85C;
}

.colorMMSL {
  background-color: #F0AD4E;
}

.colorMMLT {
  background-color: #777777;
}
.colorMMTJ {
  background-color: #5bc0de;
}

.colorMMML {
  background-color: #5CB85C;
}

.colorMMPE {
  background-color: #F0AD4E;
}

.colorMMHO {
  background-color: #777777;
}

.colorMMGM {
  background-color: #d9534f;
}

.colorRojo {
  background-color: #ff2d2d;
}

.colorVerde {
  background-color: #17c400;
}

.colorAmarillo {
  background-color: #f0ad4e;
}

#loading-indicator {
  grid-column: 1 span 9;
  grid-row: 1 span 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.MuiCircularProgress-root {
  display: inline-block;
}

.MuiCircularProgress-static {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.MuiCircularProgress-indeterminate {
  -webkit-animation: MuiCircularProgress-keyframes-circular-rotate 1.4s linear infinite;
          animation: MuiCircularProgress-keyframes-circular-rotate 1.4s linear infinite;
}

.MuiCircularProgress-determinate {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.MuiCircularProgress-colorPrimary {
  color: #3f51b5;
}

.MuiCircularProgress-colorSecondary {
  color: #f50057;
}

.MuiCircularProgress-svg {
  display: block;
  -webkit-animation: loading_animation 1.4s infinite;
          animation: loading_animation 1.4s infinite;
}

.MuiCircularProgress-circle {
  stroke: currentColor;
}

.MuiCircularProgress-circleStatic {
  -webkit-transition: stroke-dashoffset 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transition: stroke-dashoffset 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.MuiCircularProgress-circleIndeterminate {
  -webkit-animation: MuiCircularProgress-keyframes-circular-dash 1.4s ease-in-out infinite;
          animation: MuiCircularProgress-keyframes-circular-dash 1.4s ease-in-out infinite;
  stroke-dasharray: 80px,200px;
  stroke-dashoffset: 0;
}

.MuiCircularProgress-circleDeterminate {
  -webkit-transition: stroke-dashoffset 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transition: stroke-dashoffset 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

@-webkit-keyframes MuiCircularProgress-keyframes-circular-rotate {
  0% {
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes MuiCircularProgress-keyframes-circular-rotate {
  0% {
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes MuiCircularProgress-keyframes-circular-dash {
  0% {
    stroke-dasharray: 1px,200px;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100px,200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px,200px;
    stroke-dashoffset: -125px;
  }
}

@keyframes MuiCircularProgress-keyframes-circular-dash {
  0% {
    stroke-dasharray: 1px,200px;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100px,200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px,200px;
    stroke-dashoffset: -125px;
  }
}

.MuiCircularProgress-circleDisableShrink {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes loading_animation {
  0% {
    color: #4285f4;
  }
  25% {
    color: #ea4335;
  }
  50% {
    color: #f9bb2d;
  }
  75% {
    color: #34a853;
  }
}

@keyframes loading_animation {
  0% {
    color: #4285f4;
  }
  25% {
    color: #ea4335;
  }
  50% {
    color: #f9bb2d;
  }
  75% {
    color: #34a853;
  }
}

.casillaOculta {
  display: none;
}

@media screen and (max-width: 767px) {
  html {
    background-color: #f3f3f3;
  }
  #contenedorbody {
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 50px 1fr;
        grid-template-rows: 50px 1fr;
    overflow: hidden;
  }
  #divPrincipal {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    background-color: #f3f3f3;
    -ms-grid-rows: auto 80px 50px;
        grid-template-rows: auto 80px 50px;
    z-index: 3;
    width: 100vw;
    height: 100%;
    padding: 0%;
    margin: 0px;
    border: 0px;
    overflow-y: hidden;
    font-family: 'Open Sans', sans-serif;
  }
  #estaciones {
    z-index: 20;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.671)), to(rgba(240, 240, 240, 0.705)));
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.671), rgba(240, 240, 240, 0.705));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    background-size: cover;
    width: 100vw;
    height: 100%;
    margin: 0px 0px;
    margin-bottom: 20px;
    padding: 0px 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto auto auto auto;
        grid-template-columns: auto auto auto auto auto;
    -ms-grid-rows: 70px;
        grid-template-rows: 70px;
    grid-gap: 0px 10px;
    justify-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    border-radius: 30px 30px 0px 0px;
    -webkit-box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
            box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  }
  #estaciones div:nth-of-type(2) {
    background-color: turquoise;
  }
  .estacionBoton {
    width: 60px;
    height: 60px;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    background: -webkit-gradient(linear, left top, right top, from(#47748f), to(#47748f));
    background: linear-gradient(to right, #47748f, #47748f);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    cursor: pointer;
  }
  #dashboard {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    z-index: 8;
    width: 100vw;
    min-height: 100%;
    max-height: 100%;
    height: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 84px;
        grid-template-rows: 84px;
    grid-auto-rows: 1fr;
    -ms-grid-column-align: center;
        justify-self: center;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    margin: 0px;
    border: 0px;
    border-radius: 0px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
  }
  #contenidoDashboard {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    height: 100%;
    min-height: none;
    max-height: 100%;
    grid-auto-rows: 200px;
    grid-row-gap: 20px;
    justify-items: center;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    overflow-y: scroll;
    margin-top: 0px;
    padding: 10px 20px;
  }
  #cabeceraDashboard {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: 50px 10px;
        grid-template-rows: 50px 10px;
    height: 100%;
    background-color: transparent;
    border-radius: 20px;
    z-index: 23;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  }
  #cabeceraDashboard div:nth-child(n) {
    font-size: 24px;
    font-weight: 600;
  }
  #dashboardEstacion {
    color: #636363;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    background-image: none;
    background-color: transparent;
  }
  #tituloColAno {
    height: 100%;
    color: #636363;
    -ms-grid-columns: 30% 40% 30%;
        grid-template-columns: 30% 40% 30%;
    text-align: center;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    background-color: transparent;
  }
  #anoAnterior {
    background-color: #414141;
    border-radius: 10px;
    width: 50%;
    -ms-grid-column-align: end;
        justify-self: end;
    background-image: url("img/atras-linea.svg");
    background-size: 20px 20px;
    background-position: center;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  }
  #anoSiguiente {
    background-color: #414141;
    border-radius: 10px;
    width: 50%;
    -ms-grid-column-align: start;
        justify-self: start;
    background-image: url("img/adelante-linea.svg");
    background-size: 20px 20px;
    background-position: center;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  }
  .noneHeaderDash {
    height: 0px;
    overflow: hidden;
  }
  .filaDashboard {
    padding: 0px;
    width: 96%;
    height: 100%;
    max-height: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 60% 40%;
        grid-template-columns: 60% 40%;
    -ms-grid-rows: (25px)[8];
        grid-template-rows: repeat(8, 25px);
    margin: 0px 2%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 5px 10px;
    border-radius: 30px;
    /*    div:nth-of-type(4){
            background-color: rgb(236, 236, 236);
        }
        div:nth-of-type(5){
             background-color: rgb(236, 236, 236);        }
        div:nth-of-type(8){
             background-color: rgb(236, 236, 236);        }
        div:nth-of-type(9){
             background-color: rgb(236, 236, 236);        }
        div:nth-of-type(12){
             background-color: rgb(236, 236, 236);        }
        div:nth-of-type(13){
             background-color: rgb(236, 236, 236);        }
        div:nth-of-type(16){
             background-color: rgb(236, 236, 236);        }
        div:nth-of-type(17){
            background-color: rgb(236, 236, 236);
        } */
  }
  .filaDashboard:nth-of-type(even) {
    background-color: white;
  }
  .casillaNombre {
    z-index: 5;
    height: 100%;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid black;
    padding: 0px 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .casilla {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-flex-line-pack: center;
        align-content: center;
    border-bottom: 1.5px solid gray;
  }
  .casilla:last-of-type {
    border-bottom: 0px;
  }
  .casillaOculta {
    display: -ms-grid;
    display: grid;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    padding-left: 5px;
    -ms-flex-line-pack: center;
        align-content: center;
    font-weight: 600;
    font-size: 12px;
    border-bottom: 1.5px solid gray;
  }
  .noInfo {
    background-color: transparent;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 7;
    grid-row: 2/9;
  }
  .noInfo .tag:nth-of-type(1) {
    font-weight: 500;
    background-color: #f3d10d;
    color: #494949;
  }
  #footer {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
  #footer p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1580px) and (min-width: 1080px) {
  .filaDashboard:nth-of-type(odd) {
    background: white;
  }
  .filaDashboard:nth-of-type(even) {
    background: #e0e0e0;
  }
  .casillaNombre {
    font-size: 14px;
  }
  .casillaNombre div:nth-child(2) {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 1080px) and (min-width: 640px) {
  .estacionBoton {
    font-size: 30px;
    font-weight: 700;
    border-radius: 20px;
  }
  #cabeceraDashboard div:nth-child(n) {
    font-weight: 600;
    font-size: 12px;
  }
  #cabeceraDashboard div:nth-child(n) {
    font-weight: 600;
    font-size: 12px;
  }
}
/*# sourceMappingURL=mainprueba.css.map */