/* ================ The Timeline ================ */

/* .timeline-overflow{
  overflow-y: scroll;
  max-height: 100vh;
} */

.timeline-overflow::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}

/* sms modal */
.container {
  position: relative;
  color: black;
}
.bubble {
  position: relative;
  color: black;
}
.phone-container .phone {
  width:250px;
  height: 420px;
  border: solid black;
  border-width: 30px 5px 40px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 20px 10px;
  box-shadow: 5px 5px 15px 2px #888;
}
.phone-container::before {
  content: '';
  display: block;
  width: 40px;
  height: 5px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #444;
  border-radius: 10px
}
.phone-container::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 50%
}

.speech-bubble-ds {
	margin-top: 2em !important;
	display: flex;
 	flex-direction: column;
  background: #14a3db;
  border: 1px solid #a7a7a7;
  -webkit-border-radius: 4px;
  color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  line-height: 1.3;
  margin: 0 auto 40px;
	max-width: 300px;
	max-height: auto;
  padding: 15px;
  position: relative;
}

.phone-container img, .phone-container>.centered div {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.icon{
  width: 30px;
  height: 30px;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

.timeline-container {
  width: 80%;
  padding: 50px 0;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}

.timeline-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: #CCD1D9;
  z-index: 1
}

.timeline-block {
  width: -webkit-calc(50% + 8px);
  width: -moz-calc(50% + 8px);
  width: calc(50% + 8px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  clear: both;
}

.timeline-block-right {
  float: right;
}

.timeline-block-left {
  float: left;
  direction: rtl
}

.marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #104087;
  background: #4FC1E9;
  margin-top: 10px;
  margin-left: -7px;
  margin-right: -7px;
  z-index: 10
}

.timeline-content {
  width: 95%;
  padding: 0 15px;
  color: #666
}

.timeline-content h3 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 500
}

.timeline-content span {
  font-size: 15px;
  color: #a4a4a4;
}

.timeline-content p {
  font-size: 14px;
  line-height: 1.5em;
  word-spacing: 1px;
  color: #888;
}

@media screen and (max-width: 768px) {
  .timeline-container:before {
     left: 18px;
     width: 2px;
  }
  .timeline-block {
     width: 100%;
     margin-bottom: 30px;
  }
  .timeline-block-right {
     float: none;
  }

  .timeline-block-left {
     float: none;
     direction: ltr;
  }

  .marker{
    margin-left: 3px;
  }
}

.bottom-border-none{
  border-bottom: none;
}
