.commentArea textarea {
	display: block;
	resize: none;
	width: 100%;
	font-size:15px;
	height: 35px;
	margin-bottom: 5px;
	box-sizing: content-box;
}

.commentArea .commentWriter {
	width: 50%;
}

.commentArea .cancelButton, .commentArea .sendButton {
	display: inline-block;
    height: 28px;
    border: solid 1px transparent;
    padding: 0 10px;
    outline: 0;
    font-weight: 500;
    font-size: 11px;
    text-decoration: none;
    white-space: nowrap;
    word-wrap: normal;
    line-height: normal;
    vertical-align: middle;
    border-radius: 2px;
    cursor: pointer;
}

.commentArea #comments {
	margin-top: 5px;
}

.commentArea .comment {
	margin-top:5px;
}

.commentArea .firstLine {
	margin-bottom: 5px;
	height: 15px;
}

.commentArea .username {
	color: #128ee9;
	font-size:15px;
	vertical-align: middle;
    line-height: 15px;
}

.commentArea .date {
	color: #767676;
	font-size:12px;
	vertical-align: middle;
    line-height: 15px;
}

.commentArea .remove {
	width:20px;
	height:20px;
	cursor: pointer;
	vertical-align: middle;
}

.commentArea .reply {
	color: #767676;
	font-size:12px;
	margin-bottom: 5px;
	cursor: pointer;
}

.commentArea .text {
	font-size:15px;
	border: 0;
	padding: 0;
	background: white;
	color:black;
	box-sizing: content-box;
	max-width: 50%;
}

.commentArea .removedtext {
    font-style: italic;
}

.commentArea .replies {
	margin-top: 5px;
	position: relative;
    left: 2%;
}

.subscribelink {
	color:blue;
	cursor:pointer;
	padding: 10px;
	text-align: center;
	border-radius: .25rem;
	font-weight: bold;
	position: absolute;
	right: 0;
	display: inline-block;
    width: 120px;
    line-height: 15px;
    font-size: 15px;
    box-sizing: border-box;
    height: 35px;
}

.subscribelink.active {
	border: 1px solid green;
	color: white;
	background: green;
}

.subscribelink.active:hover {
	border: 1px solid red;
	color: green;
	background: red;
	color: white;
	-webkit-transition: background 0.5s ease-out, border 0.5s;
    transition: background 0.5s ease-out, border 0.5s;
}

.subscribelink.passive {
	border: 1px solid blue;
	color: blue;
}

.subscribelink.passive:hover {
	border: 1px solid blue;
	color: blue;
	background: lightblue;
	-webkit-transition: background 0.5s ease-out, border 0.5s;
    transition: background 0.5s ease-out, border 0.5s;
}

.subscribelink.active:after {
	content: "Following";
}

.subscribelink.active:hover:after {
	content: "Unfollow";
}

.subscribelink.passive:after {
	content: "Follow";
}

.subscribelink.passive:hover:after {
	content: "Follow";
}