html, body {
  padding-top:50px;
}
#scrollable {
  margin-top: 50px;
  /* We need to limit the height and show a scrollbar */
  width: 90%;
  height: 600px;
  overflow: auto;
  /* Optional, only to check that it works with margin/padding */
  margin: auto;
  border: 1px solid #f5f5f5
 
}
.loading {
 height: 50px;
    background: #6565f8;
    font-size: 24px !important;
    position: absolute !important;
    color: white;
    width: 100%;
    text-align: center;
}
#infinite-list {

  padding: 20px;
  margin: 15px;
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
  font-size: 8px;
}
#infinite-list:before {
        top: 0;
        bottom: 0;
        position: absolute;
        content: " ";
        width: 3px;
        background-color: #eeeeee;
        left: 50%;
        margin-left: -1.5px;
    }

    #infinite-list > li {
        margin-bottom: 20px;
        position: relative;
  font-size: 8px;
      
    }

        #infinite-list > li:before,
        #infinite-list > li:after {
            content: " ";
            display: table;
        }

        #infinite-list > li:after {
            clear: both;
        }

        #infinite-list > li:before,
        #infinite-list > li:after {
            content: " ";
            display: table;
        }

        #infinite-list > li:after {
            clear: both;
        }

       #infinite-list > li > .timeline-panel {
            width: 46%;
            float: left;
            border: none;
            border-radius: 20px;
            padding: 20px;
            position: relative;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
    border: 1px solid #FF9800;
        }

            #infinite-list > li > .timeline-panel:before {
                /* position: absolute;
                top: 26px;
                right: -15px;
                display: inline-block;
                border-top: 15px solid transparent;
                border-left: 15px solid #ccc;
                border-right: 0 solid #ccc;
                border-bottom: 15px solid transparent;
                content: " "; */
            }

            #infinite-list > li > .timeline-panel:after {
                position: absolute;
                top: 27px;
                right: -14px;
                display: inline-block;
                border-top: 14px solid transparent;
                border-left: 14px solid #FF9800;
                border-right: 0 solid #FF9800;
                border-bottom: 14px solid transparent;
                content: " ";
            }

        #infinite-list > li > .timeline-badge {
            color: #fff;
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: 1.4em;
            text-align: center;
            position: absolute;
            top: 16px;
            left: 50%;
            margin-left: -25px;
            background-color: #fff;
            border: 1px solid #38568C;
            z-index: 100;
            border-top-right-radius: 50%;
            border-top-left-radius: 50%;
            border-bottom-right-radius: 50%;
            border-bottom-left-radius: 50%;
        }
        #infinite-list > li > .timeline-badge i{
          color: #f78b0a;
        }

        #infinite-list> li.timeline-inverted > .timeline-panel {
            float: right;
        }

            #infinite-list > li.timeline-inverted > .timeline-panel:before {
                border-left-width: 0;
                border-right-width: 15px;
                left: -15px;
                right: auto;
            }

            #infinite-list > li.timeline-inverted > .timeline-panel:after {
                border-left-width: 0;
                border-right-width: 14px;
                left: -14px;
                right: auto;
            }

.timeline-badge.primary {
    background-color: #2e6da4 !important;
}

.timeline-badge.success {
    background-color: #3f903f !important;
}

.timeline-badge.warning {
    background-color: #f0ad4e !important;
}

.timeline-badge.danger {
    background-color: #d9534f !important;
}

.timeline-badge.info {
    background-color: #5bc0de !important;
}

.timeline-title {
    margin-top: 0;
    color: #3F5570;
    font-family: monospace;
    font-weight: 900;
}

.timeline-body > p,
.timeline-body > ul {
    margin-bottom: 0;
    text-align: right;
}
.timeline-body > ul li{
    margin-bottom: 0;
    text-align: right;
}
    .timeline-body > p + p {
        margin-top: 5px;
    }

@media (max-width: 767px) {
    ul:before {
        left: 40px;
    }

    ul > li > .timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
    }

    ul > li > .timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
    }

    ul > li > .timeline-panel {
        float: right;
    }

        ul > li > .timeline-panel:before {
            border-left-width: 0;
            border-right-width: 15px;
            left: -15px;
            right: auto;
        }

        ul > li > .timeline-panel:after {
            border-left-width: 0;
            border-right-width: 14px;
            left: -14px;
            right: auto;
        }
}