/* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  box-sizing: inherit;
  font-family: Lato, sans-serif;
  font-size: 62.5%;
  line-height: 1.5;
}

body {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: inherit;
  background: #efefef;
}
*/
.wrapper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.timelineBox {
  width: 350px;
  height: auto;
  overflow: hidden;
  margin: 1rem auto;
  background: #fff;
  /*box-shadow: 0 0 8px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(0, 0, 0, 0.02);*/
}

.timelineHeader {
  padding: 3rem 2rem;
  background: #e91e63;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5), 0 4px 0 rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 3;
}
.timelineHeader h3 {
  font-family: inherit;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  color: #fff;
  font-weight: normal;
  margin: 0;
}
.timelineHeader h3 + span {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  font-weight: normal;
  color: #fff;
}

.timelineBody {
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
}
.timelineBody .timeline {
  padding: 0rem 0rem !important;
    padding-right: 1rem !important;
    padding-left:1rem !important;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}
.timelineBody .timeline:before {
  content: "";
  position: absolute;
  width: 1px;
  background: #f2f2f2;
  top: 0;
  right: auto;
  left: 16px;
  height: 100%;
  z-index: -1;
  /*box-shadow: 0 0 8px rgba(0, 0, 0, 0.085), 0 1px 0 rgba(0, 0, 0, 0.02);*/
}
.timelineBody .timeline li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 0px;
  position: relative;
}
.timelineBody .timeline .timelineDot  {
 
  background: #000;
 
  box-shadow: 0 0 8px #c900;
}
.timelineBody .timeline .timelineDot {
  height: 1.5rem;
  width: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  flex: 0 0 0.5rem;
  margin-right: auto;
  margin-top: 6px;
 /* box-shadow: 0 0 8px #56cb5f;*/
}
.timelineBody .timeline  .timelineDot::after  {

  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
    left: -6px;
  background-color: #b3afbd;
  border-radius: 100%;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    border-bottom-left-radius: 100%;
  opacity: .3;
 
}

.timelineBody .timeline .timelineDot::before {
   content: "";
position: absolute;
top: 10px;
left: -2px;
height: 6px;
width: 6px;
background-color: #b3afbd;
border-radius: 100%;
}
.timelineBody .timeline .timelineDate {
  font-size: 0.75rem;
   margin-top: 5px;
  flex: 0 0 40px;
  padding-left:0.1rem !important;
  font-family: helvetica
  font-weight: normal;
}
.timelineBody .timeline .timelineWork {
  font-family: inherit;
  font-size: 0.8rem;
  margin-left: 10px;
  flex: 0 0 250px;
}
.timelineBody .timeline .timelineWork a { color:#262626;}
.timelineBody .timeline .timelineWork a:link {color:#262626;}
.timelineBody .timeline .timelineWork a:hover {color:#b00;}
.timelineBody .timeline .timelineWork a:visited {color:#262626;}
.timelineBody .timeline .timelineWork small {
  display: block;
  color: #bdbdbd;
}

.timelineBody::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.timelineBody::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.timelineBody::-webkit-scrollbar-thumb {
  background-color: #e91e63;
}
.cobertura-label {
  display: inline;
  top: 0.45rem;
  left: 0.45rem;
  background: #e00505;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.75em;
  color: white;
  padding: 0.5em;
  font-family: "Helvetica Condensed", Sans-serif;
}
.title-cobertura {

  
}
.title-cobertura a {
 color:#262626;

}
.title-cobertura a:link {
 color:#262626;
font-size: 18px;
font-family: helvetica condensed;
    font-weight:600px;
}
.title-cobertura a:hover {
 color:#0000ff;
  
}
.title-cobertura a:visited {
 color:#262626;
font-size: 18px;
font-family: helvetica condensed;
    font-weight:600px;
  
}
.boxcircle {
 width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: radial-gradient(#fff 0%, #b00 100%);
  animation: myAnimation 1s infinite alternate;
 
}

@keyframes myAnimation{
  0% {
      background-image: radial-gradient(#fff 100%, #b00 100%);

  }
  25% {
      background-image: radial-gradient(#fff 75%, #b00 100%);

  }
  50% {
    background-image: radial-gradient(#ccc 50%, #ff0000 100%);
  }
  75% {
    background-image: radial-gradient(#ccc 25%, #ff0000 100%);
  }
  100% {
     background-image: radial-gradient(#ccc 0%, #ff0000 100%);
  }
}