.read-more-modal {
    position: fixed;
    width: 60vw;
    height: 80vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    top: calc(50% - 40vh);
    left: calc(50% - 30vw);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.read-more-modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.read-more-modal .modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.read-more-modal .modal-container {
  border: 1px #333 solid;
  border-radius: 4px;
  background: #fff;
  position: relative;
  padding: 30px;
  border: #333 2px solid;
  overflow-x: scroll;

  height: 100%;
  width: 100%;
}
.read-more-modal .rm-modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  outline: none;
  appearance: none;
	border: 1px solid #000;
  color: #F10E11;
	font-size: 24px;
  background: none;
  border: 0px;
  font-weight: bold;
  cursor: pointer;
}
.read-more-modal .rm-background {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(3,3,3,.8);
}
.readmorelink a {
	text-align: left;
	color: #8a7143;
	text-decoration: underline;
}
.readmorelink {
	text-align: left;
}