.d_feedbackBox_form label {
	display: flex;
	flex-direction: column;
	font-size: 16px;
	padding-bottom: 10px;
	font-weight: 500;
	width: 100%;
}

.d_feedbackBox_heading {
	text-align: center;
	color: #fff;
	background-color: #ee7105;
	border: 1px solid #cccccc;
	padding: 15px;
	border-radius: 10px 10px 0 0;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
}

.d_feedbackBox_oneElement {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 20px;
	background-color: #eeeeee;
	border: 1px solid #cccccc;
	padding: 20px;
	color: #0e0e0e;
}

.d_feedbackBox_everySecondElement {
	background: #f7f7f7 !important;
}

.d_feedbackBox_form input {
	padding: 15px 20px;
	border-radius: 3px;
	border: 1px solid #dddd;
	font-size: 16px;
	margin-top: 10px;
}

.d_feedbackBox_form textarea {
	padding: 8px 6px;
	border-radius: 3px;
	border: 1px solid #dddd;
	margin-top: 10px;
	font-size: 16px;
}

.d_feedbackBox_form button {
	display: block;
	padding: 10px 30px;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	width: 100%;
	border: none;
	margin-top: 20px;
}

.d_feedbackBox_newsBlock {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	font-weight: 600;
}

.d_feedbackBox_goodNews {
	color: #628a4f;
	margin-top: 20px;
}

.d_feedbackBox_badNews {
	color: #b43c2b;
	margin-top: 20px;
}

.d_feedbackBox_author {
	font-size: 16px;
	color: #181818;
	font-weight: 600;
}

.d_feedbackBox_date {
	font-size: 12px;
	color: #666;
}

.d_feedbackBox_oneElement p {
	margin: 0 0 10px 0;
	font-size: 14px;
}

.d_feedbackBox_replyButton {
	color: #006ac3;
	transition: 0.3s;
	font-size: 14px;
}

.d_feedbackBox_actionSeparator {
	margin-right: 15px;
	width: 1px;
	height: 20px;
	display: inline-block;
	background: #666;
}

.d_feedbackBox_replyButton:hover {
	color: #000;
	text-decoration: underline;
	cursor: pointer;
}

.d_feedbackReplies_replyBoxForm {
	width: 100%;
}

.d_feedbackReplies_replyActiveForm {
	margin-top: 20px;
}

.d_feedbackBox_oneReplyElement {
	width: 100%;
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background-color: #FFFFFF;
	border: 1px solid #cccccc;
	padding: 20px;
	color: #0e0e0e;
}
.d_feedbackBox_oneReplyElement em {
	font-style: italic!important;
	font-weight: normal;
}

.d_feedbackReplies_loop {
	width: 100%;
	position: relative;
}

.d_feedbackBox_actionsBox {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.d_feedbackReplies_AllRepliesBox {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	width: 100%;
}

.d_feedbackBox_actionsBox a:not(:last-child) {
	margin-right: 12px;
}

.d_feedbackReplies_hiddenRepliesBox {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease-in-out;
}

.d_feedbackReplies_hiddenRepliesBoxActive {
	max-height: 3500px;
}

.d_feedbackReplies_showAllReplies {
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 25px;
	width: 100%;
}

.d_feedbackBox_actionsBox svg {
	width: 17px;
	height: 17px;
	transition: 0.3s;
	margin-right: 3px;
}

.d_feedbackBox_actionsBox svg path {
	fill: #8a8989;
}

.d_feedbackBox_disableAction {
	cursor: default !important;
}

.d_feedbackBox_disableAction svg path {
	fill: #8a8989 !important;
}

.d_feedbackBox_setLike, .d_feedbackBox_setDislike {
	display: flex;
	align-items: center;
	cursor: pointer;

}

.d_feedbackBox_votingAlready {
	cursor: default;
}

.d_feedbackBox_votingLikeAlready svg path {
	fill: #e87005;
	cursor: default;
}

.d_feedbackBox_votingDisAlready, .d_feedbackBox_votingLikeAlready {
	cursor: default !important;
}

.d_feedbackBox_votingDisAlready svg path {
	fill: black;
	cursor: default;
}

.d_feedbackBox_setLike:hover svg path {
	fill: #e87005;
}

.d_feedbackBox_setDislike:hover svg path {
	fill: black;
}

.d_feedbackBox_footer {
	display: flex;
	align-items: center;
	width: 100%;
	flex-direction: column;
}

.d_feedbackBox_footer section {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
}

.d_feedbackBox_votingMessage {
	width: 100%;
	font-size: 14px;
	text-align: left;
	color: #666;
}
.d_feedbackBox_newVoting {
	padding: 10px 0;
	color: #60be60;
	font-weight: 600;
	width: 100%;
	text-align: center;
}

.d_feedbackBox_header {
	display: grid;
	margin-bottom: 10px;
	grid-template-columns: 0.25fr 1fr;
	width: 100%;
	align-items: center;
	justify-content: flex-start;
}

.d_feedbackBox_nameBox {
	display: flex;
	flex-direction: column;
	position: relative;
}


.d_feedbackBox_user_info section {
	display: flex;
	flex-direction: column;
}


.d_feedbackBox_body p {
	margin-top: 0;
	font-size: 16px;
}


.d_feedbackBox_activities div:first-child {
	margin-right: 15px;
}

.d_feedbackBox_activities svg {
	width: 20px;
	height: 20px;
}

.d_feedbackBox_date {
	font-size: 14px;
	color: grey;
}

.d_feedbackBox_showMoreContent, .d_feedbackBox_showLessContent {
	cursor: pointer;
	display: block;
	margin: 10px 0;
	color: #006ac3;
	font-weight: 500;
	transition: 0.3s;
}
.d_feedbackBox_showMoreContentInline, .d_feedbackBox_showLessContentInline {
	cursor: pointer;
	color: #006ac3;
	font-weight: 500;
	transition: 0.3s;
	margin-left: 10px;
}
.d_feedbackBox_showMoreContentInline:hover, .d_feedbackBox_showLessContentInline:hover {
	color: #111111;
}
.d_feedbackBox_showMoreContent:hover, .d_feedbackBox_showLessContent:hover {
	color: #111111;
}

.d_feedbackBox_hiddenContent {
	display: none !important;
}
.d_myCourseFeedback_activeImgBox {
	display: block!important;
}


.d_feedbackBox_fullContent {
	display: block;
	max-height: 100%;
}
.d_feedbackBox_fullContentInline {
	display: inline;
}
.d_feedbackBox_lowContent {
	max-height: 55px!important;
	overflow: hidden;
}

.d_feedbackBox_mark {
	color: grey;
	text-align: left;
	font-size: 12px;
}

.d_feedbackBox_moreActions svg {
	width: 30px;
	height: 15px;
}

.d_feedbackBox_hidden {
	display: none;
}

.d_feedbackBox_images {
	display: flex;
	position: relative;
	flex-wrap: nowrap;
	justify-content: flex-start;
	transition: 0.6s;
	overflow-x: auto;
	overflow-y: visible;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	scroll-snap-stop: always;
	touch-action: manipulation;
}

.d_feedbackBox_image {
	object-fit: cover;
	width: 150px;
	height: 100px;
}

.d_feedbackBox_imageBox {
	display: flex;
	position: relative;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	margin-bottom: 10px;
	flex-shrink: 0;
	scroll-snap-align: start;
}

.d_feedbackBox_glassIcon {
	position: absolute;
	transition: 0.3s;
}

.d_feedbackBox_imageBox:hover .d_feedbackBox_glassIcon {
	transform: scale(1.1);
}

.d_feedbackBox_glassIcon svg {
	width: 25px;
	height: 25px;
	fill: #ffffff;
}

.d_feedbackBox_videoBox {
	display: flex;
	margin: 10px 0;
	width: 100%;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
}
.d_feedbackBox_videoBox img {
	object-fit: cover;
	width: 100%;
	height: 130px;
	border-radius: 5px;
}

.d_feedbackBox_playIcon {
	position: absolute;
	transition: 0.3s;
	width: 100%;
	z-index: 10;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.d_feedbackBox_verified {
	position: absolute;
	bottom: 7px;
	left: -25px;
}
.d_feedbackBox_verified svg {
	width: 20px;
	height: 20px;
}


.d_feedbackBox_playIcon svg {
	width: 40px;
	height: 40px;
	fill: #ffffff;
}

.d_feedbackBox_memberInitials {
	width: 40px;
	height: 40px;
	background: #dddddd;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 500;
	margin-right: 15px;
}

.d_feedbackBox_memberAvatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 10px;
}

.d_feedbackBox_unapprovedDate {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}

.d_feedbackBox_unapprovedMessage {
	width: 100%;
	color: darkred;
	text-align: left;
	margin: 10px 0;
}

.d_feedbackBox_contentBox ul {
	line-height: 1.4;
	padding-left: 15px;
}

.d_feedbackBox_contentBox li {
	font-size: 14px;
	padding: 0 0 0.7em 0.7em;
}

@media ( min-width: 768px ) {
	.d_feedbackBox_heading {
		font-size: 18px;
	}
	.d_feedbackBox_contentBox li {
		font-size: 18px;
		padding: 0 0 1em 1em;
	}
	.d_feedbackBox_videoBox img {
		width: 250px;
		height: 200px;
	}
	.d_feedbackBox_verified {
		bottom: -5px;
	}
	.d_feedbackBox_memberAvatar {
		margin-right: 15px;
	}

	.d_feedbackBox_header {
		display: flex;
	}

	.d_feedbackBox_oneElement p, .d_feedbackBox_contentBox li, .d_feedbackBox_author {
		font-size: 18px;
	}

	.d_feedbackBox_videoBox {
		flex-direction: row;
	}

	.d_feedbackBox_body p {
		font-size: 18px;
	}

	.d_feedbackBox_mark {
		font-size: 14px;
	}

	.d_feedbackBox_contentBox ul {
		padding-left: 20px;
	}
}