.analisisRutaBody {
    padding: 0;
    margin: 0;
    font-size: 12px !important;
}

.navbar {
    margin-bottom: 0px;
}

.navbar-nav button {
    border-style: none !important;
}
#analisisMap,
#wrapper,
#page-content-wrapper {
    height: 100%;
    position: absolute;
    width: 100%;
}

.container-fluid {
    height: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
}

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: auto;
}

#wrapper.toggled {
    /* padding-left: 500px; */
}

#sidebar-wrapper {
    top: 53px;
    z-index: 1001;
    position: fixed;
    left: 500px;
    width: 0;
    height: 100%;
    margin-left: -500px;
    overflow-y: hidden;
    background: rgba(255, 255, 255, 0.644);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 500px;
}

#sideContainer {
    position: relative;
    top: 0%;
    width: 100%;
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: 15px;;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding-bottom: 50px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -500px;
}

#sidebar{
    background: rgba(225, 225, 225, 0.692); /* Demo only */
    position:absolute;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    padding: 15px;
    margin-bottom: 15px;
}

#geoAlerts {
    background: rgba(255, 255, 255, 0.363); /* Demo only */
    overflow-y: auto;
    overflow-y: auto;
    overflow-x: hidden;
}

.calculosDiv {
    position: relative;
    background-color: rgba(255, 255, 255, 0.363);
    width: 100%;
    height: auto;
}

#routesDet {
    position:absolute;
    background-color: rgba(255, 255, 255, 0.363);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.fila-ruta {
    cursor: pointer;
}

.fila-ruta:hover {
    background-color: rgba(97, 96, 96, 0.363);
}
.panel-body-calcs {
    padding: 25px !important;
}

.semaforo{
	width: 20px;
	height: 20px;
	border: 1px solid black;
	margin: 2px;
	border-radius: 50%;
    float: left;
    display: block;
}

.semaforo-mark{
	width: 20px;
	height: 20px;
	border: 1px solid black;
	margin: 2px;
	border-radius: 50%;
    float: left;
    display: block;
}

.in-route-circle {
    width: 20px;
	height: 20px;
	border: 1px solid black;
	margin: 2px;
	border-radius: 50%;
    float: left;
    display: block;
}
.azul-route {
    background-color: #1e2455;
}

.azul-route.prendido {
    background-color: #001aff;
    -webkit-animation: blinkBlue 0.5s infinite;
    -moz-animation: blinkBlue 0.5s infinite;
    -ms-animation: blinkBlue 0.5s infinite;
    -o-animation: blinkBlue 0.5s infinite;
    animation: blinkBlue 0.5s infinite;
}

.rojo-route {
    background-color: #61030377;
}

.rojo-route.prendido {
    background-color: #ff0101;
    -webkit-animation: blinkRed 0.5s infinite;
    -moz-animation: blinkRed 0.5s infinite;
    -ms-animation: blinkRed 0.5s infinite;
    -o-animation: blinkRed 0.5s infinite;
    animation: blinkRed 0.5s infinite;
}

.verde-sem {
    background-color: #00400096;
}

.verde-sem.prendido {
    background-color: #00ff00;
    -webkit-animation: blinkGreen 0.5s infinite;
    -moz-animation: blinkGreen 0.5s infinite;
    -ms-animation: blinkGreen 0.5s infinite;
    -o-animation: blinkGreen 0.5s infinite;
    animation: blinkGreen 0.5s infinite;
}

.rojo-sem {
    background-color: #61030377;
}
.rojo-sem.prendido {
    background-color: #ff0101;
    -webkit-animation: blinkRed 0.5s infinite;
    -moz-animation: blinkRed 0.5s infinite;
    -ms-animation: blinkRed 0.5s infinite;
    -o-animation: blinkRed 0.5s infinite;
    animation: blinkRed 0.5s infinite;
}

.amarillo-sem {
    background-color: #aa9a0960;
}
.amarillo-sem.prendido {
    background-color: #ffe600;
    -webkit-animation: blinkYellow 1s infinite;
    -moz-animation: blinkYellow 1s infinite;
    -ms-animation: blinkYellow 1s infinite;
    -o-animation: blinkYellow 1s infinite;
    animation: blinkYellow 1s infinite;
}

.alert-notification{
    background: #ffdb9b;
    padding: 20px 40px;
    min-width: 420px;
    position: absolute;
    right: 0;
    top: 10px;
    border-radius: 4px;
    border-left: 8px solid #ffa502;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.alert-notification.showAlert{
    opacity: 1;
    pointer-events: auto;
}
.alert-notification.show{
    animation: show_slide 1s ease forwards;
}

#geoAlertsInfo {
    max-height: 400px;
    overflow-y: scroll;
}

@keyframes show_slide {
    0%{
        transform: translateX(100%);
    }
    40%{
      transform: translateX(-10%);
    }
    80%{
      transform: translateX(0%);
    }
    100%{
      transform: translateX(-10px);
    }
  }
  .alert-notification.hide{
    animation: hide_slide 1s ease forwards;
  }
  @keyframes hide_slide {
    0%{
      transform: translateX(-10px);
    }
    40%{
      transform: translateX(0%);
    }
    80%{
      transform: translateX(-10%);
    }
    100%{
      transform: translateX(100%);
    }
  }
  .alert-notification .fa-exclamation-circle{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ce8500;
    font-size: 30px;
  }
  .alert-notification .msg{
    padding: 0 20px;
    font-size: 18px;
    color: #ce8500;
  }
  .alert-notification .close-btn{
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffd080;
    padding: 20px 18px;
    cursor: pointer;
  }
  .alert-notification .close-btn:hover{
    background: #ffc766;
  }
  .alert-notification .close-btn .fas{
    color: #ce8500;
    font-size: 22px;
    line-height: 40px;
  }

/* Luz verde */
@-webkit-keyframes blinkGreen {
    from { background-color: #00ff00; }
    50% { background-color: #085519; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #00400096 0 -1px 9px, #00ff00 0 2px 0; }
    to { background-color: #00ff00; }
}
@-moz-keyframes blinkGreen {
    from { background-color: #00ff00; }
    50% { background-color: #085519; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #00400096 0 -1px 9px, #00ff00 0 2px 0; }
    to { background-color: #00ff00; }
}
@-ms-keyframes blinkGreen {
    from { background-color: #00ff00; }
    50% { background-color: #085519; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #00400096 0 -1px 9px, #00ff00 0 2px 0; }
    to { background-color: #00ff00; }
}
@-o-keyframes blinkGreen {
    from { background-color: #00ff00; }
    50% { background-color: #085519; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #00400096 0 -1px 9px, #00ff00 0 2px 0; }
    to { background-color: #00ff00; }
}
@keyframes blinkGreen {
    from { background-color: #00ff00; }
    50% { background-color: #085519; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #00400096 0 -1px 9px, #00ff00 0 2px 0; }
    to { background-color: #00ff00; }
}
/*************************************** */

/* Luz azul */
@-webkit-keyframes blinkBlue {
    from { background-color: #001aff; }
    50% { background-color: #1e2455; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #141830 0 -1px 9px, #001aff 0 2px 0; }
    to { background-color: #001aff; }
}
@-moz-keyframes blinkBlue {
    from { background-color: #001aff; }
    50% { background-color: #1e2455; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #141830 0 -1px 9px, #001aff 0 2px 0; }
    to { background-color: #001aff; }
}
@-ms-keyframes blinkBlue {
    from { background-color: #001aff; }
    50% { background-color: #1e2455; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #141830 0 -1px 9px, #001aff 0 2px 0; }
    to { background-color: #001aff; }
}
@-o-keyframes blinkBlue {
    from { background-color: #001aff; }
    50% { background-color: #1e2455; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #141830 0 -1px 9px, #001aff 0 2px 0; }
    to { background-color: #001aff; }
}
@keyframes blinkBlue {
    from { background-color: #001aff; }
    50% { background-color: #1e2455; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #141830 0 -1px 9px, #001aff 0 2px 0; }
    to { background-color: #001aff; }
}
/*************************************** */
/* Luz roja */
@-webkit-keyframes blinkRed {
    from { background-color: #F00; }
    50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
    to { background-color: #F00; }
}
@-moz-keyframes blinkRed {
    from { background-color: #F00; }
    50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
    to { background-color: #F00; }
}
@-ms-keyframes blinkRed {
    from { background-color: #F00; }
    50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
    to { background-color: #F00; }
}
@-o-keyframes blinkRed {
    from { background-color: #F00; }
    50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
    to { background-color: #F00; }
}
@keyframes blinkRed {
    from { background-color: #F00; }
    50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
    to { background-color: #F00; }
}
/*********************************** */

/* Luz amarilla */
@-webkit-keyframes blinkYellow {
    from { background-color: #FF0; }
    50% { background-color: #AA0; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #808002 0 -1px 9px, #FF0 0 2px 0; }
    to { background-color: #FF0; }
}
@-moz-keyframes blinkYellow {
    from { background-color: #FF0; }
    50% { background-color: #AA0; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #808002 0 -1px 9px, #FF0 0 2px 0; }
    to { background-color: #FF0; }
}
@-ms-keyframes blinkYellow {
    from { background-color: #FF0; }
    50% { background-color: #AA0; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #808002 0 -1px 9px, #FF0 0 2px 0; }
    to { background-color: #FF0; }
}
@-o-keyframes blinkYellow {
    from { background-color: #FF0; }
    50% { background-color: #AA0; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #808002 0 -1px 9px, #FF0 0 2px 0; }
    to { background-color: #FF0; }
}
@keyframes blinkYellow {
    from { background-color: #FF0; }
    50% { background-color: #AA0; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #808002 0 -1px 9px, #FF0 0 2px 0; }
    to { background-color: #FF0; }
}
/*************************************** */




/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #routesDet {
        position:absolute;
        width: 12%;
        height: 26%;
        left: 1%;
        top: 24%;
        background-color: rgba(255, 255, 255, 0.363);
        overflow-y: auto;
        overflow-x: hidden;
        margin: 5px;
    }

    .panel-body-calcs {
        padding: 25px !important;
        overflow-y: auto;
        overflow-x: hidden;
        position: absolute;
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    #routesDet {
        width: 30%;
        height: 23%;
        left: 1%;
        top: 23%;
    }

    .panel-body-calcs {
        padding: 25px !important;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    #routesDet {
        width: 24%;
        height: 23%;
        left: 32%;
        top: 10%;
    }

    .panel-body-calcs {
        padding: 25px !important;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    #routesDet {
        width: 19%;
        height: 23%;
        left: 34%;
        top: 9%;
    }

    .panel-body-calcs {
        padding: 25px !important;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    #routesDet {
        width: 15%;
        height: 15%;
        left: 41%;
        top: 9%;
    }

    .panel-body-calcs {
        min-height: 459px;
    }

}