/* TimeLine */
.timeline {
    min-height: 400px;
    position: relative;
}

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

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

}

.timeline .timeline-item .timeline-anker {
    width: calc(52px + 20%);
    min-width: 40px;
    height: 2px;
    position: relative;
    top: 140px;
    background:#dfdfdf;
}

.timeline .timeline-item .timeline-anker:after {
    height: 34px;
    width: 34px;
    font-family: FontAwesome;
    position: absolute;
    color: white;
    border-radius: 200px;
    text-align: center;
    font-size: 12px;
    line-height: 22px;
    background: white;
    border:2px solid #ff9900;
    transform:translateY(-50%);
}

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

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

.timeline .timeline-item .timeline-anker.idea:after {
    content: "\f1d8";
}

.timeline .timeline-item .timeline-anker.comment:after {
    content: "\f086";
}

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

.timeline .timeline-item:nth-of-type(odd) {
    padding-right: 50%;
}

/* 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:#f6f6f6;

    }
    .xs-pa-20
    {
        padding:20px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .timeline .card .text-right{
        text-align: left !important;
    }

    .timeline .card{
        padding-top: 0 !important;
    }
}

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

}

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

}