.banner-challenge {
  width:100%;
}
.lightpurple-text {
  color:#937ab4;
}
.pink-text {
  color: #ee4f90;
}
.yellow-text {
  color: #ffce00;
}
.green-text {
  color: #82bc00;
}
.blue-text {
  color: #00a8e1
}
.img-icons-calendar {
  width:auto;
  height:80px;
}
.strong {
  font-weight: bold;
}
.margin-section {
  margin-:20px;
}

/* CSS talk bubble */
.talk-bubble {
  display: inline-block;
  position: relative;
  width: 210px;
  height: auto;
  background-color: #47cf73;
}

.round{
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;

}

/* talk bubble contents */
.talktext{
  padding: 0px;
  margin: 0px;
  text-align: center;
}
.talktext p{
  /* remove webkit p margins */
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
}

/*Right triangle, placed bottom left side slightly in*/
.tri-right.btm-left:after{
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  left: 0px;
  right: auto;
  top: auto;
  bottom: -19px;
  border: 22px solid;
  border-color: transparent transparent transparent #47cf73;
}