.tpl-row,
.tpl-col,
.tpl-container{
  max-width: 100%;
  display: flex;
  box-sizing: border-box;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: inherit;
}
.tpl-nowrap{
  flex-wrap: nowrap;
}

.tpl-container{
  width: 100%;
  flex: 0 0 100%;
  margin: 0 0 0;
  font-size: 1rem;
  justify-content: flex-end;
}
.tpl-row {
  flex: 0 0 100%;
  flex-direction: row;
  justify-content: space-around;
}
.tpl-col {
  flex: 1 0 100%;
  /*flex-direction: column;*//* breaks on IE */
  flex-direction: row; 
}

.tpl-row *,
.tpl-col * {
  max-width: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.tpl-row *{
  flex: 0 0 auto;
}
.tpl-col * {
  flex: 0 0 100%;
}
.tpl-row>*,
.tpl-col>*{
  line-height: 1.5em;
  width: 100%;
}
.tpl  li,
.tpl  ul {
  text-align: left;
  margin: 0;
}




/* tpl typed-zones parts */
/**********************************************************************************************************************/
.tpl-bullet{
  width: auto;
  flex: 0 1 auto;
}
.tpl-img{
  width:40%;/*IE*/
  /*flex: 0 1 40%;*/
}
.tpl-time{
  width:25%;/*IE*/
  /*flex: 0 1 25%;*/
}
.tpl-description{
  width:60%;/*IE*/
  /*flex: 0 0 60%;*/
  padding: 0 10% 0 5%;
}

.tpl-time * {
  text-align: left;
  padding: 0 0 0 15%;
}
.tpl-description * {
  justify-content: flex-start;
  text-align: left;
}

.tpl .img.square{
  border-radius: 0;
}
.tpl .img.rounded{
  border-radius: 4px;
}
.tpl .img.oval{
  border-radius: 50%;
}

