.clock-wrapper{
  width: 200px;
  height: 200px;;

  margin: 20px;
}


/* End clock part */

/*Timeline part:*/
.timeline-wrapper{
  /*margin-top: 50px;*/
  width: 100%;
  height: 160px;
  /*border: 1px solid black;*/
  /*overflow: hidden;*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
  float: left;
}
.timeline-wrapper hr{
  width: 100%;
  margin-top: 75px;
  border-top: 5px solid rgb(189,215,238);
}
.dot{
  width: 20px;
  height: 20px;
  border-radius: 25px;
  border: 1px solid rgba(0,0,0,0);
  background-color: rgb(157,195,230);
  float: left;
  margin-left: 10px;
  position: relative;
  top: -32px;
  transition: background-color 1s, border 1s;
}
.dot span{
  display: none;
  text-align: center;
  width: 100%;
  padding: 0;
  font-size: 10px;
  position: relative;
  top: -2px;
  border-radius: 20px;
}
.green{
  background-color: rgb(197,224,180);
  color: rgb( 56, 87, 35);
  border: 1px solid rgb(112,173, 71);
}

.yellow{
  background-color: rgb(255,230,153);
  color: rgb(192,146,  0);
  border: 1px solid rgb(255,192,  0);
}

.red{
  background-color: rgb(255,193,193);
  color: rgb(192,  0,  0);
  border: 1px solid rgb(255,  0,  0);
}

.colored{
  transition: transform 0.2s, background-color 0.2s, border 0.3s;
  cursor: pointer;
}

.small_dot{
  width: 28px;
  height: 28px;
  border-radius: 16px;
  background-color: #ccc;
  font-size: 16px;
  position: relative;
  display: none;
}

.small_dot p{
  padding: 0;
  margin-top: 3px;
  width: 100%;
  text-align: center;
}

.green .small_dot{
  background-color: rgb(112,173, 71); /*rgb(226,240,217);*/
  color: white; /*rgb( 84,130, 53);*/
  /*border: 1px solid rgb(169,209,142);*/
}
.yellow .small_dot{
  background-color: rgb(255,192,  0); /*rgb(255,240,193);*/
  color: white; /*rgb(210,160,  0);*/
  /*border: 1px solid rgb(255,217, 97);*/
}
.red .small_dot{
  background-color: rgb(255, 75, 75); /*rgb(255,215,215);*/
  color: white; /*rgb(255,  0,  0);*/
  /*border: 1px solid rgb(255, 75, 75);*/
}

span.data-title{
  position: relative;
  top: 15px;
  padding-bottom: 2px;
  padding-left: 5px;
  color: rgba(44,64,95,0.8);
  font-size: 14px;
  font-weight: 600;
  float: left;
  text-align: left;
  width: 100%;
  border-bottom: 1px dashed rgba(44,64,95,0.8);
}
span.data-title span{
  font-size: 12px;
  color: rgba(44,64,95,0.6);
}

.select-day{
  position: relative;
  top: -15px;
  width: 120px;
  height: 25px;
  padding-top: 0;
  float: right;
}

.col-xs-12{
  background-color: white;
  border-radius: 10px;
}

body{
  background-color: #ddd;
}

.row{
  padding: 10px;
}