@keyframes show_lesson_info {
	from{transform: translateY(-8px); opacity: 0;}to{transform: translateY(0); opacity: 1;}
}

.lesson-info-image {
	height: 100%;
	width: auto;
}

.crop-container {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	overflow: hidden;
}

.dashed-container {
	border-bottom: 1px dashed;
	display: inline-flex;
	margin-bottom: 5px;
}

.difficult-info-main-container {
	display: inline-flex;
}

.disabled-number {
	color: lightgray;
}

.hint-container {
	display: none;
	position: fixed;
	top: 0;
	left: 965px;
	text-align: left;
	color: #333;
}

.inner-hint-container {
	display: block;
}

.last_change_form {
	text-align: right;
	background: #F2F2F2;
	padding: 5px 10px 5px 0;
}

.lesson-info {
	text-align: right;
	border: 2px solid #F2F2F2;
	display: flex;
	padding: 10px;
	justify-content: space-between;
}

.lesson-info-author {
	display: flex;
	align-items: flex-end;
}

.lesson-info-author-and-image {
	display: flex;
}

.lesson-info-difficult {
	display: inline-flex;
}

.lesson-info-difficult-hint {
	background-color: #fff;
	padding: 10px;
	border-radius: 2px;
	box-shadow: 0 5px 10px -5px #000;
	overflow: hidden;
	border: 1px solid #aeaeae;
	display: block;
	width: 500px;
	animation-name: show_lesson_info;
	animation-duration: 300ms;
}

.lesson-info-difficult-number {
	padding: 0 5px;
	margin-bottom: 5px;
}

.lesson-info-down-arrow {
	width: 15px;
	height: 15px;
	display: none;
	background: #4C4C4C;
	border: none;
	transform: rotate(45deg);
	margin-top: -7px;
	z-index: 1;
}

.lesson-info-img-container {
	min-width: 50px;
	display: flex;
	justify-content: center;
	border: 1px solid #f2f2f2;
	padding: 5px;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
	background: #F2F2F2;
}

.lesson-info-left-side {
	margin-top: -5px;
	max-width: 30%;
}

.lesson-info-target-word {
	cursor: pointer;
}

.lesson-info-teacher-name {
	border: 1px solid #f2f2f2;
	margin-left: -1.5%;
	border-bottom-left-radius: 2px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 5px;
	border-left-color: #F2F2F2;
	background: #F2F2F2;
	min-width: 100px;
	width: min-content;
	text-align: left;
}

.lesson-info-teacher-name-container {
	display: flex;
	align-items: flex-end;
}

.lesson-info-text {
	padding-top: 10px;
	flex-grow: 1;
	text-align: right;
}

.main-container-info-lesson {
	display: flex;
	flex-flow: column;
}

.without-bottom-right {
	border-bottom-right-radius: 30px;
}
.course-content-details-wrapper{
	display: flex;
	align-items: flex-start;
	flex: 0 0 auto;
	max-width: 400px;
}
.course-content-image{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 20px;
	margin-top: 5px;
	flex: 1 0 auto;
}

#hint_redactions .hint-redactions-block {
	position: relative;
}

#hint_redactions .hint-redactions-block:hover .hint-redactions-hidden-info {
	z-index: 1;
	opacity: 1;
}

#hint_redactions .hint-redactions-hidden-info {
	z-index: -1;
	bottom: 18px;
	right: 100px;
	text-align: left;
	color: #000;
	font-size: 13px;
	background-color: #fff;
	padding: 10px 26px;
	border-radius: 2px;
	box-shadow: 0 5px 10px -5px #000;
	overflow: hidden;
	border: 1px solid #aeaeae;
	opacity: 0;
	transition: 160ms linear all;
	line-height: 1.4;
	position: absolute;
	box-sizing: border-box;
	width: 350px;
}

#hint_redactions .hint_redactions-title {
	color: #00a1d9;
	border-bottom: 1px dashed #00a1d9;
	cursor: default;
}


@media (max-width: 1000px) {
	.course-content-image{
		margin-top: 20px;
	}
}
@media (max-width: 700px) {
	.course-content-image{
		order: 1;
		margin-right: 0;
	}

	#hint_redactions .hint-redactions-hidden-info {
		display: none;
	}
}
.course-content-details-wrapper .course-content-image img{
	height: 100%;
	width: auto;
}