.timeline-overflow
{
  width:100%;
}
/* TimeLine */
.timeline,
.event-timeline {
    min-height: 400px;
    position: relative;
}
.event-timelineitem
{
  display:flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.timeline:after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: calc(50% - 3px);
    border-left: 3px solid #e5e5e5;
    transform: translate(-50%);
}
.event-timeline:after{
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: calc(25% - 3px);
  border-left: 3px dashed #dfdfdf;
  transform: translate(-50%);
}

.timeline .timeline-item {
    position: relative;
    z-index: 1;

}

.timeline .timeline-item .timeline-anker {
    width: calc(52px + 10%);
    min-width: 40px;
    height: 2px;
    position: relative;
    top: 90px;
    transform:translateY(-50%);
}
.event-timeline .event-timelineitem .timeline-anker
{
  width: calc(52px + 10%);
  min-width: 40px;
  height: 2px;
  position: relative;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  z-index: 1;
}
.event-timeline .event-timelineitem .timeline-anker:after  {
    height: 24px;
    width: 24px;
    position: absolute;
    color: white;
    text-align: center;
    transform:translateY(-50%) translateX(calc(-50% - 3px));
    background-color:#ba1523;
    content:"";
    transform-origin: center;
}
.timeline-anker::before{
  content:"";
  height:40px;
  width:5px;
  position: absolute;
  background:white;
  right:0px;
  transform:translateY(-50%);
}

.timeline .timeline-item .timeline-anker:after {
  height: 24px;
  width: 24px;
  position: absolute;
  color: white;
  text-align: center;
  transform:translateY(-50%) translateX(calc(-50% - 3px)) rotate(-16deg);
  background-color:#ba1523;
  content:"";
  transform-origin: center;
}

.timeline .timeline-item:nth-of-type(even) .timeline-anker:after {
    left:2px;
}

.timeline .timeline-item:nth-of-type(odd) .timeline-anker:after {
    right:-24px;
}

.timeline .timeline-item:nth-of-type(even) .timeline-anker::before
{
  left:-3px;
}

.timeline .timeline-item:nth-of-type(even) {
    padding-left: calc(50% - 2px);
}

.timeline .timeline-item:nth-of-type(odd) {
    padding-right: 50%;
}
.timeline-date
{
  transform:translateY(calc(-100% + 8px)) translateX(15px);
  margin-bottom:0 !important;
}
/* Flex */
.d-block {
    display: block;
}

.d-iblock {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.d-flex-inline {
    display: inline-flex;
}

.flex-expand {
    flex: 1 1 auto;
}

.flex-50 {
    flex: 0 0 50%;
}

.flex {
    flex: 1;
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column {
    flex-direction: column;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.flex-align-center {
    align-items: center;
}

.flex-right {
    flex-direction: row;
    justify-items: flex-end;
    justify-content: flex-end;
}

.flex-item-grow > * {
    flex-grow: 1;
}

.flex-justify-between {
    justify-content: space-between;
}

.flex-justify-around {
    justify-content: space-around;
}

.flex-item {
    flex: 1;
}
.stand
{
    padding-left:40px;
    line-height:34px;
    position: relative;
    margin-bottom:20px;
}
.stand b
{
    font-weight:bold;
    font-family:'Helvetica Neue LT W01_67 Md Cn';
}
.stand:before
{
    position:absolute;
    left:0;
    top:0;
    width:34px;
    height:34px;
    border-radius:9999px;
    border:2px solid #ff9900;
    background:white;
    content: "\2713";
    font-family: 'mfg_labs_iconsetregular';
    font-style: normal;
    speak: none;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    line-height:30px;
    text-align: center;
    color: #949494;

}
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .timeline .timeline-item:nth-of-type(even) {
        padding-left:0;
    }

    .timeline .timeline-item:nth-of-type(odd) {
        padding-right: 0;
    }
    .timeline .timeline-item
    {
        margin-bottom:2rem;
    }
    .timeline-item__content
    {
        margin:0 auto;
        background:white;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    }
    .xs-pa-20
    {
        padding:20px;
    }
    .timeline .timeline-item .timeline-anker
    {
        opacity:0;
    }
    .timeline-item
    {
        margin-bottom:50px !important;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  .event-timeline::after
  {
    display:none;
  }
  .event-timeline-content
  {
    left:0 !important;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
.event-timeline-image
{
  border-radius:9999px;
  width:130px;
  height:130px;
  border:2px solid #3481b5;
  position: relative;
}
.timeline-image
{
    position: absolute;
    left:50px;
    top:0;
    border-radius:9999px;
    width:130px;
    height:130px;
    border:2px solid #3481b5;
    z-index: 2;
}
.event-timeline-content
{
  left:5%;
  position: relative;

}
.flex-row-reverse .timeline-image
{
    left:auto;
    right:50px;
}
.bg_fleck
{
    position: relative;
    z-index: 1;
}
.event-timelineitem .bg_fleck
{
  padding:20px 20px 20px 30px;
}
.event-timelineitem
{
  margin-bottom:50px;
}
.bg_fleck > div
{
    padding:30px;
    min-height: 230px;
}
.flex-25
{
  flex:0 0 25%;
}
.flex-10
{
  fleX:0 0 10%;
}
.flex-15
{
  fleX:0 0 15%;
}
.flex-50
{
  fleX:0 0 50%;
}
.flex-self-center
{
  align-self: center;
}
