/* TimeLine V2 */

* .wrapper-timeline {
  box-sizing: border-box;
}

.wrapper-timeline{
  /*font-family: roboto;*/
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.box-area {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
}

.box-area:first-child,
.box-area:last-child {
  height: 50px !important;
}

.custom {
    order: 1;
}

.box-date {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  background: linear-gradient(to right,#fff 45%,#aaa 45%,#fff 48%);
  text-align: center;
  /*font-size: 28px;*/
  flex-basis: 100px;
  /*color: #fff;*/
  width: 20vw !important;
  order: 2;
  margin-right: 5px;
}

.box-date > span {
  font-size: 14px;
  padding: 0 10px;
  margin: auto;
  border-radius: 12px;
  /*crear clase green*/
  color: #69c262;
  border: 1px solid #69c262;
  background: #eaf5e1;
}

.box-text {
  /*text-align: center;*/
  padding: 20px;
  border-radius: 25px;
  color: #000;
  padding-left: 10px;
  background: steelblue;
  margin-bottom: 3%;
  width: 80vw !important;
  order: 3;
  border: 1px solid #dce1e7;
  background: #fff;
  box-shadow: 0 1.53346px 11.501px rgba(38,49,80,.15);
  border-radius: 5px;
}

.box-area:first-child .box-text,
.box-area:last-child .box-text {
  border: none;
  box-shadow: none;
}

.box-text h4 {
  margin: 5px;
  font-size: 16px;
  line-height: 18px;
  color: #000;
}

.box-text p {
  font-size: 12px;
  line-height: 18px;
  border-right: 3px solid #69c262;
}

@media (min-width: 640px) {
  
  .box-text,
  .custom {
    width: 40% !important;
  }

    /*.box-right .custom {
    order: 3 !important;
  }*/

  .box-area:nth-child(2n) .custom {  /*background-color: yellow;*/
  order: 3 !important;
}

  /*.box-right .box-text {
    order: 1 !important;
    padding-right: 10px !important;
  }*/

  .box-date {
    margin-left: 5px;
  }

  .box-area:nth-child(2n) .box-text {
   /* background-color: pink !important;*/
    order: 1 !important;
    padding-right: 10px !important;
  }

  .box-area:nth-child(odd) p {
  border-left: none !important;
    border-right: 3px solid #69c262;
  }

  .box-area:nth-child(2n) p {
    border-right: none !important;
    border-left: 3px solid #69c262;
    padding-left: 5px;
  }

}

.period_badge {
  height: 100px !important;
  background-color: yellowgreen !important;
  margin-bottom: 200px !important;
  color: black !important;
  display: block;
  visibility: visible;
}

.encabezado-timeline {
  border-top: 1px solid #69c262;
    background-image: linear-gradient(180deg,#eaf5e1,hsla(0,0%,100%,0));
    height: 50px;
}

.encabezado-timeline.green span {
    color: #69c262;
    border: 1px solid #69c262;
    background: #eaf5e1;
    padding: 0 15px;
    border-radius: 3px;
    position: relative;
    top: -12px;
    font-weight: 500;
}