@charset "utf-8";

.readmore {
    position: relative;
    margin: 2em auto;
    display: block;
    color: #5a5a5a;
    border: none;
    outline: 0;
    cursor: pointer;
    background: none;
    letter-spacing: 0.1em;
	font-size: 12px;
}
.readmore:before {
  content: "";
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 0 auto .5em;
  background: url(../images/arrow.png) no-repeat center / 28px #fff;
  transition: .3s;
}
.readmore.on-click:before {
  transform: rotate(180deg);
}
.readmore .open {
  display: block;
}
.readmore.on-click .open {
  display: none;
}
.readmore .close {
	display: none;
}
.readmore.on-click .close {
	display: block;
}