@CHARSET "UTF-8";

/*
 * Links
 */
a.pageTurn, a.discussionLink, a.classLink, a.chatterRank, a.searchLink,
	.tagsDisplayContainer a, a.chatterDeletePost, a.chatterDeleteDiscussion
	{
	text-decoration: none;
	outline: none;
}

a.pageTurn:hover, a.discussionLink:hover, a.classLink:hover, a.chatterRank:hover,
	a.searchLink:hover, .tagsDisplayContainer a:hover a.chatterDeletePost:hover,
	a.chatterDeleteDiscussion:hover {
	text-decoration: none !important;
}

a.chatterLink, a.chatterLink:hover, a.chatterLink:focus, a.chatterLink:visited
	{
	/* color: #9932CC; */
	color: green;
}

a.chatterAttachment, a.chatterAttachment:hover, a.chatterAttachment:focus,
	a.chatterAttachment:visited {
	color: blue;
}


/*
 * 	Social Learning/Discussion Feed page
 */

/*.portlet-body{
	background-color: #f4f4f4 !important;
}*/

.width70pc {
	width: 70%;
}

.width60pc {
	width: 60%;
}

.width90pc {
	width: 90%;
}

.width600px {
	width: 600px;
}

.width330px {
	width: 330px;
}


.width70em {
	width: 70em;
}

.width60em {
	width: 60em;
}


.newsFeedDiscussionGroup{
	background-color: white;
}

/*
 * Avatar Settings (generally)
 */
.avatar {
	border-radius: 2px !important;
}

/*
 * Page Navigation
 */
.pageNavigator {
	text-align: right;
}

/*
 * Discussion List
 */
.chatterClassHeader {
	font-weight: normal !important;
	font-size: 1.89em;
	color: rgb(0, 0, 0);
}

.discussionList {
	margin-bottom: 1em;
}

.discussionList hr {
	margin: 0.1em;
}

.discussionList .discussionListHeader {
	margin-right: 1.3em;
	/* Approximates the width of the scrollbar on the content area for appropriate header alignment*/
}

.discussionList .contentArea {
	max-height: 14em;
	overflow-y: scroll;
	overflow-x: hidden;
}

@media ( max-height : 260px) {
	.discussionList .contentArea {
		max-height: 4em;
	}
}

@media ( min-height : 260px) and (max-height: 360px) {
	.discussionList .contentArea {
		max-height: 6em;
	}
}

@media ( min-height : 360px) and (max-height: 460px) {
	.discussionList .contentArea {
		max-height: 8em;
	}
}

@media ( min-height : 460px) and (max-height: 560px) {
	.discussionList .contentArea {
		max-height: 10em;
	}
}

@media ( min-height : 560px) and (max-height: 660px) {
	.discussionList .contentArea {
		max-height: 12em;
	}
}

.noDiscussionsItem {
	width: 100%;
	text-align: center;
	padding: 1em;
}

.discussionItem {
	position: relative;
	display: table;
	overflow: hidden;
	width: 100%;
	margin: 0em auto;
	white-space: normal;
	font-size: 0.9em;
	border-bottom: 1px solid lightgray;
}

.contentArea .discussionItem {
	width: 100%;
}

.contentArea .discussionItem:nth-of-type(even) {
	background-color: #fdfdfd;
}

.contentArea .discussionItem:nth-of-type(odd) {
	background-color: #f9f9f9;
}

.discussionItem.beingViewed {
	background-color: #dff0d8 !important;
}

.discussionItem.unviewed {
	font-weight: bold;
}

.discussionItem:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0em;
}

.discussionItem .subject, .discussionItem .author, .discussionItem .discussionAvatar,
	.discussionItem .posts, .discussionItem .viewCount, .discussionItem .date,
	.discussionItem .actions {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.discussionItem .subject {
	width: 35%;
	min-width: 7em;
	text-align: left;
}

.discussionItem .subject img {
	float: left;
	height: 1.4em;
	margin-right: 0.2em;
}

.discussionItem .discussionAvatar {
	min-width: 3em;
	text-align: right;
}

.discussionAvatar img {
	max-width: 2em;
	max-height: 2em;
}

.discussionItem .author {
	width: 15%;
	min-width: 7em;
	text-align: left;
}

.discussionItem .posts {
	width: 8%;
	min-width: 5em;
}

.discussionItem .viewCount {
	width: 8%;
	min-width: 5em;
}

.discussionItem .date {
	width: 18%;
	min-width: 8em;
}

.discussionItem .actions {
	width: 5%;
	min-width: 6em;
}

.discussionItem .inner {
	padding: 0em 0.5em;
}

/*
 * Live Chat
 */
.liveChatHolder .unrecorded {
	vertical-align: top;
	text-align: center;
}

.liveChatHolder .unrecorded .unrecordedChatIcon {
	float: left;
	width: 60px;
	height: 60px;
	margin-right: 0.3em;
}

.liveChatHolder .unrecorded>div {
	overflow: hidden;
}

.liveChatDialog {
	text-align: center;
}

/*
 * General Formatting of Discussion View
 */
.discussion {
	width: 100%;
}

/*
 * General Post Formatting
 */
.post {
	width: calc(100% - 15px);
	max-width: 100em;
	margin: 0;
	margin-left: 15px;
	padding: 1em;
	white-space: nowrap;
	color: var(--primary-color-light-text,#888);
	border-bottom: 1px solid #eee;
}

.post:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0em;
}

.post .user {
	float: left;
	position: relative;
	margin-right: 1em;
}

.post .content {
	position: relative;
	overflow: hidden;
	white-space: normal;
	word-wrap: break-word;
}

.post .postInfo {
	position: relative;
	overflow: hidden;
	white-space: normal; /*Allow wrapping for long info boxes*/
	word-wrap: normal;
}

.post .postInfo .instructor>img {
	height: 1.4em;
}

.post .content {
	color: #333;
	white-space: normal;
	margin: 0.3em 0 0 0em;
}

/*
 * Formatting of the user area (left group)
 */
.post .user .avatar {
	width: 2.35em;
}

/*
 * Formatting of the post header (right area, top)
 */
.post .postInfo>div {
	display: inline-block;
	padding: 0 0.1em 0 0.3em;
	border-left: 1px dotted #888;
	color: var(--primary-color-light-text,#888);
}
/*
 *Formating the name if not enough space
 */
.post .postInfo>div.name {
	border: none;
	padding-left: 0;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: no-wrap;
	max-width: 235px;
	vertical-align: text-bottom;
}

/*
 * Formatting of the post content
 */
.post .content .message {
	text-align: justify;
}

.post .content .message .edited {
	padding-top: 0.5em;
	font-size: 0.75em !important;
	color: rgb(153, 153, 153)
}

.post .content .message:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0em;
}

/*
 * Image and Video Formatting
 */
.postImagePreviewDiv {
	margin: 0.5em 0em;
}

.postVideoPreviewDiv {
	margin: 0.5em 0em;
}

.post .content img {
	display: block;
	max-width: 100%;
}

.post .content img, .post .content iframe {
	display: block;
	margin: 0.5em 0em;
	padding-left: 0.3em;
	border-left: 4px solid #d0d0d0;
}

.post .content .attachments img {
	display: inline-block;
	margin: 0 0 0 0;
	padding: 0;
	border: none;
}

/*
 * Formatting of broadcast and poll posts
 */
.post-item {
	margin: 0 em;
	padding: 0em;
	width: 100%;
}

.post-item .associatedIcon {
	float: left;
	background-size: contain;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	margin-right: 0.5em;
	border: 1px solid white;
}

.post-item .associatedIcon:hover {
	border: 1px solid black;
	cursor: pointer;
}

.post-item.poll .associatedIcon:hover {
	border: 1px solid white;
	cursor: auto;
}

.post-item.meeting .associatedIcon {
	background-image: url(/Dashboard/icons/meeting/MeetingPostIcon.jpg);
	cursor: pointer;
}

.post-item.poll .associatedIcon {
	background-image: url(/Dashboard/icons/Poll.png);
}

.post-item.courseBoard .associatedIcon {
	background-image: url(/Dashboard/icons/chatter/scetchpad.png);
}

.post-item.upload .associatedIcon {
	background-image: url(/Dashboard/icons/chatter/addfile.png);
}

.post-item-content {
	overflow: hidden;
}

.post-item .detail {
	padding-right: 0.5em;
}

.post-item .detail:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0em;
}

.post-item .detail .type {
	float: left;
	margin: 0em 0.5em 0em 0em;
	padding: 0em;
	color: black;
	font-weight: bold;
}

.post-item .detail .thumbnailHolder {
	position: relative;
	width: 570px;
	/*height: 320px;*/
}

.post-item .detail .thumbnailHolder img {
	width: 560px;
	height: 315px;
}

.post-item .detail .thumbnailHolder .thumbnailOverlay, .onlyVideo .thumbnailOverlay
	{
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	/* This CSS section is for Uploading text in Media Channel */
	line-height: 315px;
	text-align: center;
	font-weight: bold;
	font-size: 36pt;
	background-image:
		url(/Dashboard/icons/broadcast/broadcast-play-transparent.png);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	pointer-events: none;
	/*Transparency w/css3 anim*/
	opacity: 0.7;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.post-item .detail .thumbnailHolder:hover .thumbnailOverlay, .onlyVideo:hover .thumbnailOverlay
	{
	opacity: 0.95;
}

.post-item .options {
	padding: 1em 0em;
}

/*
 * Attachments (files and broadcasts)
 */
.post .attachments {
	overflow: hidden;
	margin-top: 0.3em;
	margin-left: 0em;
}

.post .attachments:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0em;
}

.post .attachments .attachmentHeader {
	float: left;
	margin: 0 0.3em 0 0;
	font-weight: bold;
}

.post .attachments .attachmentContainer {
	overflow: hidden;
}

.post .attachments .attachmentContainer>div {
	display: inline-block;
	margin: 0.1em 1em 0.1em 0;
	font-size: 0.8em;
}

.post .attachments .attachmentContainer img {
	width: 2em;
	height: 2em;
}

.post .attachments .attachmentContainer a:hover {
	opacity: 0.8;
}

/*
 * Ranking, Deletion, and Edit Formatting
 */
 
 .chatterEditPost {
	margin-left: 0.4em;
}

.post .ranking .value {
	display: inline;
	padding: 0 0.3em 0 0;
}

.post .ranking .chatterRank {
	padding: 0 0.5em 0 0;
}

/*
.post .ranking .chatterRank i, .chatterDeletePost i,
	.chatterDeleteDiscussion i, .chatterEditPost i {
	color: #888;
}*/

.post .ranking .chatterRank i:hover, .chatterDeletePost i:hover,
	.chatterDeleteDiscussion i:hover, .chatterEditPost i:hover {
	color: #333;
}

 a.chatterDeletePost:focus, a.chatterEditPost:focus, a.chatterDeleteDiscussion:focus, a.chatterRank:focus {
	color: #333;
}

.chatterDeleteDiscussion i, .chatterDeletePost i, .chatterRank i{
    color: inherit;
}

.post .ranking .chatterRank.selected i {
	color: red;
}

.post .ranking .chatterRank.selected i:hover {
	color: darkred;
}

/*
 * Post/Discussion Creation Area
 */
.chatterEditor {
	text-align: center;
	width: 100%;
	margin: 1em 0em;
	padding: 0.8em;
	padding-bottom: 0;
	border: 2px solid #DDD;
	background: #FFFAFA;
}

.chatterEditor .featureBlock {
	width: 100%;
	margin-bottom: 0.5em;
	margin-top: 0.5em;
}

.chatterEditor .featureBlock.advanced, .chatterEditor .featureBlock.basic
	{
	display: none;
}

.chatterEditor .featureBlock:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0em;
}

.chatterEditor label {
	font-size: inherit !important;
}

.chatterEditor .classSelectorContainer {
	float: left;
	margin-left: 0.5em;
}

.chatterEditor .postChatter {
	min-width: 5.0em;
}

.chatterEditor .previewChatter {
	margin-left: 0.4em;
}

.hideChatterForm, .toggleChatterBasic {
	float: left;
}

.chatterEditor .toggleChatterBasic {
	width: 4.6em;
}

.chatterEditor .toggleChatterBasic.textless {
	text-align: center;
	width: 1.7em;
	height: 1.7em;
	padding: 0 !important;
	padding-top: 0.05em;
	margin-right: 0.3em;
	font-weight: bold;
	font-size: 1.5em;
}

.chatterEditor .classSelectorContainer {
	display: inline-block;
	width: 100%;
}

.chatterEditor .draftChatter {
	text-align: left;
	cursor: pointer;
}

.chatterEditor .extrasContainer {
	float: left;
	text-align: left;
	display: inline-block;
}

.chatterEditor .extrasContainer .heightFaker, .chatterEditor .extrasContainer .middleAligner
	{
	vertical-align: middle;
	display: inline-block;
}

.chatterEditor .extrasContainer .heightFaker {
	width: 1px;
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
	visibility: hidden;
}

.chatterEditor .extrasContainer label {
	margin: 0;
}

.chatterEditor .discussionEntryContainer, .chatterEditor .discussionEntry
	{
	text-align: left;
	overflow: hidden;
}

.chatterEditor .discussionEntry, .chatterEditor .postEntry {
	width: 100%;
	padding: 0.5em 0.95em;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border: 1px solid #CCC;
}

.chatterEditor .postEntry {
	height: 7em;
	resize: vertical;
}

.chatterEditor .bbCodeContainer {
	white-space: nowrap;
	margin-bottom: 0;
	padding: 0.4em;
	border: 1px solid #CCC;
	border-bottom: none;
	background: #EEE;
}

.chatterEditor .bbCodeContainer div {
	display: inline-block;
	margin-right: 1em;
}

button.bbCode {
	height: 2em !important;
	line-height: 0em !important;
	font-size: 1em !important;
	padding: 0.3em 0.7em !important;
	display: inline-block;
}

/*
 * Attachments Formatting
 */
.fileDragAndDrop {
	border: 4px dashed #DDD;
	background: #FFF;
}

.fileDragAndDrop.hover, .fileDragAndDropBorder.hover {
	border-color: #0362fd;
	border-style: solid;
	box-shadow: inset 0 3px 4px #888;
}

.addAttachmentButton {
	display: inline-block;
	margin-right: 2em;
	padding: 0.75em;
	font-weight: bold;
	cursor: pointer;
}

.addAttachmentButton>img {
	height: 2em;
	padding-right: 0.3em;
}

.attachmentsDisplay {
	width: 100%;
	max-height: 10em;
	margin: 0px auto;
	overflow-y: auto;
	color: black;
}

.singleAttachmentWrapper {
	width: 20em;	
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.attachmentsDisplay .attachmentDisplayEntry:nth-child(odd) {
	background: #F5F5F5;
}

.attachmentsDisplay .attachmentDisplayEntry {
	width: 100%;
	font-size: 0.9em;
	text-align: center;
}

.attachmentsDisplay .attachmentDisplayEntry>div {
	vertical-align: middle;
	position: relative;
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
}

.attachmentsDisplay .attachmentThumbnail {
	width: 14%;
	height: 2.5em;
	margin: 0.25em;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.attachmentsDisplay .broadcastEntry .attachmentThumbnail {
	background-image: url(/Dashboard/icons/Broadcast.png);
}

.attachmentsDisplay .videoshareEntry .attachmentThumbnail {
	background-image: url(/Dashboard/icons/Broadcast.png);
}

.attachmentsDisplay .attachmentName {
	width: 25%;
	text-overflow: ellipsis;
}

.attachmentsDisplay .attachmentStatus {
	width: 24%;
}

.attachmentsDisplay .attachmentStatus a {
	color: blue;
	cursor: pointer;
}

.attachmentsDisplay .attachmentStatus progress {
	width: 100%;
}

.attachmentsDisplay .attachmentDelete {
	width: 15%;
}

.attachmentsDisplay .attachmentDelete a {
	color: red;
	cursor: pointer;
}

/*
 * CAB dialog
 */
.titleEntry {
	width: 250px;
}

/* 
 * Searching
 */
.chatterSearch {
	display: table;
	width: 100%;
	font-size: 0.8em;
	margin: 0;
}

.chatterSearch div, .chatterSearch select, .chatterSearch input,
	.chatterSearch button {
	font-size: inherit;
}

.searchTypeContainer, .searchValueContainer, .searchButtonContainer,
	.clearSearchContainer {
	display: table-cell;
	vertical-align: middle;
	padding: 0.2em;
}

.searchTypeContainer {
	width: 9em;
}

.searchTypeContainer select {
	width: auto;
}

.searchButtonContainer {
	width: 6em;
}

.clearSearchContainer {
	width: 7em;
}

.tagSelection {
	text-align: left;
	width: 100%;
	margin-top: 0.3em;
}

.tagSelection.select2-container-multi .select2-choices {
	border: 1px solid #CCC;
}

.tagSelection.select2-container-multi .select2-choices .select2-search-field input
	{
	background: #fff !important;
}

.chatterSearch .select2-input {
	width: 100% !important
		/* Without this, the select2 box refuses to shrink beyond its initial size on page resize */
}

.chatterSearch .select2-container-multi .select2-choices .select2-search-field input
	{
	min-height: 0.5em; /* Shrinks the size of the select 2 tag box */
}

/*
 * Formatting of the news feed (recent activity)
 */
.newsFeedMain {
	max-width: 78em;
	margin-left: auto;
	margin-right: auto;
}

.newsFeed .date {
	display: block;
	width: 100%;
	border: 1px solid #cccccc;
	background: #e0e0e0;
	text-align: center;
	margin: 15px 0;
}

.newsFeed .newsFeedDiscussionGroup {
	box-shadow: 0px 0px 1px 2px rgba(0, 0, 0, 0.25);
	padding: 5px 10px 1px;
	margin: 15px 0px;
}

.newsFeedDiscussionGroup .chatterEditor {
	/*max-width: 650px;*/
	
}

.newsFeedDiscussionGroup .chatterEditor .postEntry {
	height: 3em;
}

/*
 * Change Avatar
 */
.fileInput1 {
	cursor: pointer;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
	-moz-opacity: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	font-size: 50px;
}

.inputWrapper1 {
	margin-top: 10px;
	height: 64px;
	width: 64px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	display: inline-block;
	background-size: 100% 100%;
	background-image: url(/Dashboard/icons/addCustomAvatar.png);
}

.inputWrapper1:HOVER {
	opacity: 0.7;
	-moz-opacity: 0.7;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70)
}

.meetingPostOptionList ~.meetingPostOptionList {
	border-left: thin solid;
}

.meetingPostOptionList {
	padding-left: .4em;
	padding-right: .2em;
}

.sharedFilesDisplayInline {
	display: inline-block;
	vertical-align: top;
	padding-top: 0.2em;
}

.sharedFilesUL {
	list-style-type: none;
	padding-left: 0.8em;
	padding-top: 0.2em;
	display: inline-block;
}

.sharedFilesIcon {
	display: inline-block;
	height: 30px;
	padding: 0;
	margin: 0;
}

.sharedFileDetail {
	margin-top: -0.4em;
}

.sharedFileInfo {
	display: inline-block;
}

.modal-dialog .record-btn {
	margin-left: 0.8em;
	position : relative;
}

.focus-highlight-change-avatar {
  outline: 2px solid #0B6F85 !important; /* or any color you want */
  outline-offset: 2px !important;
  border-radius: 4px !important; /* match your design */
}
