@media screen and (max-width: 420px){
.content__container {
  float: right;
}
.content__container__list__item {
  text-align: right !important;
}
}
.content__container__list__item::marker {
	color: #fff0 !important;
}
.w7readtime.time_est_container {
	text-align: right!important;
	margin-top: 14px;
	margin-bottom: 18px;
	height: 17px;
	padding-right: 5px;
}
.iconc {
	font-size:15px;
	vertical-align: middle;
}
.fa-clock-o:before {
  content: "\f017";
  font-size:15px;
  color: #8d888b;
}
.word_count {
	background-color: #8d888b;
	color: #FFFfff;
	float: right;
}
.trait {
	color: #000000;
}

.content {
  transform: translate(-50%, -50%);
  height: 16px;
  overflow: hidden;
}
.content__container {
   overflow: hidden;
   height: 17px;
   float: right;
}

.content__container__text {
  display: inline;
  margin: 0;
}
.content__container__list {
  margin-top: 0;
  text-align: right;
  list-style: none;
  -webkit-animation-name: change;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: change;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.content__container__list__item {
  margin: 0;
}

@-webkit-keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes change {
  0%, 50%, 100% {
    transform: translate3d(0, 0, 0);
  }

  0%, 100% {
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change {
  0%, 50%, 100% {
    transform: translate3d(0, 0, 0);
  }

  100%, 0% {
    transform: translate3d(0, -51%, 0);
  }
}