.extra {
  display: none;
}
.original {
	width: 60%;
	margin-right: auto;
	margin-left: auto;
}

p {

  line-height: 1.2em;
  display: inline;
}
input[type="checkbox"] {
  height: 1.2em;
  display: block;
  appearance: none;
}
label {
	position: relative;
	padding: 1em;
	background-color: #1695AF;
	color: #ffffff;
	cursor: pointer;
	border-radius: 1em;
}
.floR {
	text-align: right;
}

label:before {
  content: "Read More";
}
input[type="checkbox"]:checked ~ label:before {
  content: "Read Less";
}
.dots:has(~ input[type="checkbox"]:checked) {
  display: none;
}
.extra:has(~ input[type="checkbox"]:checked) {
  display: inline;
}
