
/* CLASSES */
.filtroDashboard ul    {border-radius:.8rem; font-size: .8rem;background-color:#DDE4E1;}
.filtroDashboard ul li {display: inline-block; padding-left: 5px;list-style-type: disc;}
.filtroDashboard ul li:before {content: '\ffed';padding-right: 5px;}
.filtroDashboard a     {font-size:1.1rem !important;}




.overflow {
  max-height: 500px;
  overflow: auto;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #efefef;
  top: 0;
  bottom: 0;
  left: 0px;
  margin-left: 10px;
}

/* Container around content */
.timeline > .container {
  padding-top: 10px;
  padding-left: 75px;
  position: relative;
  background-color: white;
  width: 100%;
}


.timeline > .container::before {
    left: 65px;
    border: medium solid #efefef;
    border-width: 10px 10px 10px 0;
    border-color: transparent #efefef transparent transparent;
}



/* The circles on the timeline */
.timeline > .container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: -28px;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

.left::after {
    left: 28px;
}

/* The actual content */
.content {
  padding: 10px 10px;
  background-color: #efefef;
  position: relative;
  border-radius: 6px;
  min-height: inherit;
}