.moments-container {
    width: 100%;
    overflow: hidden;
    padding-top: 15px;
    min-height: 50px;
}

.moments-timeline-container {
    position: relative;
    height: 2px;
    background-color: #000;
}

.moments-timeline-container .moments-timeline-items-container {
    position: absolute;
    left: 30px;
    right: 30px;
}

.moments-timeline-container .moments-timeline-items-container .moments-timeline-item {
    position: absolute;
    left: 0;
    transition: transform .3s;
    cursor: pointer;
}

.moments-timeline-container .moments-timeline-items-container .moments-timeline-item:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #000;
    border-radius: 50%;
    top: -7px;
}

.moments-timeline-container .moments-timeline-items-container .moments-timeline-item.active:before,
.moments-timeline-container .moments-timeline-items-container .moments-timeline-item:hover:before {
    background-color: #aaa;
}

.moments-timeline-container .moments-timeline-items-container .moments-timeline-item .moments-timeline-item-label {
    margin-top: 15px;
    position: relative;
    left: -50%;
    transform: translateX(25%);
}

.moments-content-container .moments-moment-content-container {
    display: none;
}

.moments-content-container .moments-moment-content-container.active {
    display: block;
}

.moments-nav-button {
    position: absolute;
    background-color: #000;
    color: white;
    width: 30px;
    line-height: 30px;
    text-align: center;
    top: -13px;
    border-radius: 50%;
    text-decoration: none;
}

.moments-nav-button:hover {
    background-color: #aaa;
}

.moments-nav-left {
    left: 0;
}

.moments-nav-right {
    right: 0;
}