// CORE
@import "../../../global/less/core/variable.less";
@import "../../../global/less/core/mixins.less";
@import "../../../global/less/core/functions.less";

/* ========================================================================
 * TIMELINE TYPE 2
 * ======================================================================== */
.timeline {
  margin: 0;
  padding: 0;
  position: relative;
  margin-bottom: 30px;
}
.timeline-item {
  position: relative;
  margin: 0;
  padding: 0;
  &:before {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    background: white;
    top: 0px;
    bottom: -30px;
    margin-left: 38px;
  }
  &.last-timeline{
    &:before{
      content: normal;
    }
  }
}

.timeline-badge {
  float: left;
  position: relative;
  padding-right: 30px;
  height: 80px;
  width: 80px;
}

.timeline-badge-userpic {
  width: 80px;
  border: 4px white solid;
  .border-radius(50%)!important;
}

.timeline-badge-userpic img {
  .border-radius(50%)!important;
  vertical-align: middle !important;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background-color: #f5f6fa;
  .border-radius(50%)!important;
  padding-top: 30px;
  padding-left: 22px;
}

.timeline-icon i {
  font-size: 34px;
}

.timeline-body {
  position: relative;
  padding: 20px;
  margin-top: 20px;
  margin-left: 110px;
  background-color: white;
  .border-radius(4px);
  .box-shadow(@shadow);
  .media{
    .media-left, .media-right{
      img{
        width: 115px;
      }
    }
  }
}
.timeline-body:before, .timeline-body:after {
  content: " ";
  display: table;
}
.timeline-body:after {
  clear: both;
}

.timeline-body-arrow {
  position: absolute;
  top: 25px;
  left: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 14px 14px 0;
  border-color: transparent white transparent transparent;
}

.timeline-body-head {
  margin-bottom: 10px;
}

.timeline-body-head-caption {
  float: left;
}

.timeline-body-title {
  font-size: 16px;
  font-weight: 600;
}

.timeline-body-alerttitle {
  font-size: 16px;
  font-weight: 600;
}

.timeline-body-time {
  font-size: 14px;
  margin-left: 10px;
}

.timeline-body-head-actions {
  float: right;
  .btn-group {
    margin-top: -2px;
  }
}

.timeline-body-content {
  font-size: 14px;
  margin-top: 35px;
  p{
    &:last-child{
      margin-bottom: 0;
    }
  }
}

.timeline-body-img {
  width: 100px;
  height: 100px;
  margin: 5px 20px 0 0px;
}

.page-container-bg-solid{
  .timeline{
    &:before {
      background: #fff;
    }
  }
  .timeline-badge-userpic {
    border-color: #fff;
  }
  .timeline-icon {
    background-color: #fff;
  }
  .timeline-body {
    background-color: #fff;
  }
  .timeline-body-arrow {
    border-color: transparent white transparent transparent;
  }
}

@media (max-width: 768px) {
  .timeline-body-head-caption {
    width: 100%;
  }

  .timeline-body-head-actions {
    float: left;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .timeline-item{
    &:before {
      margin-left: 28px;
    }
  }

  .timeline-badge {
    padding-right: 40px;
    width: 60px;
    height: 60px;
  }

  .timeline-badge-userpic {
    width: 60px;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    padding-top: 23px;
    padding-left: 18px;
    i {
      font-size: 25px;
    }
  }

  .timeline-body {
    margin-left: 80px;
  }

  .timeline-body-arrow {
    top: 17px;
  }
}
