.thaiartisan .coursePage .container{
	max-width: 1140px;
	margin: auto;
	padding: 40px 20px;
	font-family: "Sarabun", Sans-serif;
    font-size: 23px;
}

.thaiartisan .coursePage .container .content{
	padding-bottom: 20px;
	border-bottom: 1px solid #B4B0B0;
}

.thaiartisan .coursePage .container .content .title{
	color: #BD2527;
    font-family: "Kanit", Sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.thaiartisan .coursePage .container .courseContainer{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.thaiartisan .coursePage .container .courseContainer .topic{
	color: #BD2527;
    font-family: "Kanit", Sans-serif;
    font-size: 2.7rem;
    font-weight: 500;
	text-align: center;
	padding: 20px 0;
}

.thaiartisan .coursePage .container .courseContainer .view{
	display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E7E9EC;
    padding: 3px 5px;
	cursor: pointer;
	color: #bababa;
	position: relative;
	transition: all .3s;
}

.thaiartisan .coursePage .container .courseContainer .view:first-child{
	border-radius: 3px 0 0 3px;
}

.thaiartisan .coursePage .container .courseContainer .view:last-child{
	border-radius: 0 3px 3px 0;
	border-left: none;
}

.thaiartisan .coursePage .container .courseContainer .view.highlight{
	color: #333;
}

.thaiartisan .coursePage .container .courseContainer .view:hover{
	color: #333;
}

.thaiartisan .coursePage .container .courseContainer .view .title{
    font-weight: 500;
    background: #122b46;
    letter-spacing: -.24px;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 22%);
    color: #fff;
    line-height: 1.3;
    padding: 3px 15px;
    position: absolute;
    white-space: nowrap;
    z-index: 10;
	top: calc(-100% - 15px);
    left: calc(-50% - 11px);
	visibility: hidden;
	display: none;
}

.thaiartisan .coursePage .container .courseContainer .view .chevron{
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    top: -12px;
    right: calc(50% - 24px);
    border: 7px solid #122b46;
    border-color: #122b46 #122b46 transparent transparent;
    transform-origin: 0 0;
    transform: rotate(135deg);
    box-shadow: 2px -3px 3px 0 rgb(0 0 0 / 2%);
	visibility: hidden;
	display: none;
}

.thaiartisan .coursePage .container .courseContainer .view:hover .chevron{
	visibility: unset;
}

.thaiartisan .coursePage .container .courseContainer .view:hover .title{
	visibility: unset;
}

.thaiartisan .coursePage .container .course{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.thaiartisan .coursePage .courseCard{
	width: calc(100% / 3 - 14px);
	border: 1px solid #e7e9ec;
	border-radius: 0 0 4px 4px;
	background: #fff;
}

.thaiartisan .coursePage .courseCard img{
	width: 100%;
    max-height: 200px;
    object-fit: cover;
	border-radius: 4px 4px 0 0;
}

.thaiartisan .coursePage .courseCard .profile{
	position: relative;
	cursor: pointer;
}

.thaiartisan .coursePage .courseCard .profile .tag{
	position: absolute;
    top: 10px;
    color: #fff;
    font-size: 17px;
    padding: 0 10px;
    border-radius: 0 10px 10px 0;
}

.thaiartisan .coursePage .courseCard .profile .tag.free{
	background: #dbbe1a;
}

.thaiartisan .coursePage .courseCard .profile .tag.paid{
	background: #BD2527;
}

.thaiartisan .coursePage .courseCard .content{
	border: none;
	padding: 16px 20px 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.thaiartisan .coursePage .courseCard .content .lesson,
.thaiartisan .coursePage .courseCard .content .progessPercent,
.thaiartisan .coursePage .courseCard .content .activity,
.thaiartisan .coursePage .courseCard .content .step{
	color: #A3A5A9;
	font-size: 17px;
    font-weight: bold;
}

.thaiartisan .coursePage .courseCard .content .name{
	font-family: "Kanit", sans-serif;
	/* cursor: pointer; */
	color: #455a64;
	text-decoration: none;
}

.thaiartisan .coursePage .courseCard .content .name:hover{
	color: #c12428;
}

.thaiartisan .coursePage .courseCard .content .blurb{
    display: -webkit-box;
    max-height: 2.7em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	font-size: 20px;
	line-height: 1;
}

.thaiartisan .coursePage .courseCard .content .blurb p{
    margin: 0;
}

.thaiartisan .coursePage .courseCard .content .progressBar{
	background: #e7e9ec;
    height: 3px;
	position: relative;
}

.thaiartisan .coursePage .courseCard .content .progress{
	background: #bd2527;
	height: 3px;
    top: 0;
	position: absolute;
}

.thaiartisan .coursePage .courseCard .avatar{
	font-size: 20px;	
}

.thaiartisan .coursePage .courseCard .avatar .label:hover{
	color: #c12428;
	cursor: pointer;
}

.thaiartisan .coursePage .courseCard .avatar img{
	width: 30px;
    height: 30px;
    object-fit: cover;
	border-radius: 3px;
}

.thaiartisan .coursePage .container .course.listView{
	flex-direction: column;
}

.thaiartisan .coursePage .container .course.listView .courseCard{
	width: 100%;
	display: flex;
	border-radius: 4px;
}

.thaiartisan .coursePage .container .course.listView .courseCard .profile img{
	border-radius: 4px 0 0 4px;
	max-height: 100%;
	width: 250px;
}

.thaiartisan .coursePage.course .header{
    min-height: 100px;
	max-height: unset;
    display: flex;
	flex-direction: column;
    background: #607387;
    background-image: linear-gradient(-180deg,rgba(0,0,0,0) 4%,rgb(0 0 0 / 20%) 100%);
	padding: 30px;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.thaiartisan .coursePage.course .header .name{
	font-family: 'Kanit', sans-serif;
	font-size: 35px;
}

.thaiartisan .coursePage.course .header .label{
	margin: 0;
	font-size: 20px;
}

.thaiartisan .coursePage.course .header .avatar{
	font-size: 20px;	
}

.thaiartisan .coursePage.course .header .avatar .label:hover{
	cursor: pointer;
}

.thaiartisan .coursePage.course .header .avatar img{
	width: 30px;
    height: 30px;
    object-fit: cover;
	border-radius: 3px;
}

.thaiartisan .coursePage.course .header .container{
    width: 100%;
	color: #fff;
	display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
	position: relative;
}

.thaiartisan .coursePage.course .header .detail{
	display: flex;
	cursor: pointer;
}

.thaiartisan .coursePage.course .header .container .information{
	max-width: calc(100% - 480px);
	width: calc(100% - 480px);
	-webkit-text-stroke: 1px #F8F8F8;
	text-shadow: 0px 2px 9px #23430C;
}

.thaiartisan .coursePage.course .header .container .profileContainer{
	position: fixed;
	max-width: 1140px;
    width: 100%;
}

.thaiartisan .coursePage.course .header .container .profileContainer .profile{
	position: absolute;
	top: 0;
	background: #fff;
	color: #000;
	width: 360px;
	right: 0;
	box-shadow: 0 32px 54px 0 rgb(0 0 0 / 10%);
	border-radius: 10px;
	z-index: 5;
}

.thaiartisan .coursePage.course .header .container .profileContainer .profile .button{
	background: #bd2527;
	color: #fff;
	text-align: center;
	padding: 5px 20px;
    width: 100%;
    border-radius: 20px;
	border: 1px solid #385DFF;
	font-size: 20px;
	cursor: pointer;
}

.thaiartisan .coursePage.course .header .container .profileContainer .profile .button.disable {
	background: #e2e7ed;
	color: #000;
	text-align: center;
	padding: 5px 20px;
    width: 100%;
    border-radius: 20px;
	border: none;
	font-size: 20px;
	cursor: default;
	user-select: none;
}


.thaiartisan .coursePage.course .header .container .profileContainer .profile .price{
	color: #A3A5A9;
	text-align: center;
	font-size: 20px;
}

.thaiartisan .coursePage.course .header .container .profileContainer .profile img{
	max-height: 200px;
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.thaiartisan .coursePage.course .content{
    width: 100%;
	max-width: 1140px;
    margin: auto;
	padding-right: 8%;
	padding-left: 10px;
	padding-top: 35px;
	padding-bottom: 35px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.thaiartisan .coursePage.course .content .information{
	max-width: calc(100% - 480px);
	width: calc(100% - 480px);
	font-family: 'Sarabun', sans-serif;
	font-size: 24px;
}

.thaiartisan .coursePage.course .content .information .has-text-color{
	font-family: 'Kanit', sans-serif;
}

.thaiartisan .coursePage.course .content .information a{
	color: #c12428;
	text-decoration: none;
}

.thaiartisan .coursePage.course .content .information img{
	max-width: 100%;
}

.thaiartisan .coursePage.course .content .progressContainer{
	display: flex;
	max-width: calc(100% - 480px);
    width: calc(100% - 480px);
	padding: 10px;
    background: #f4f6f9;
    border-radius: 5px;
}

.thaiartisan .coursePage.course .content .tabContainer{
	display: flex;
	border-bottom: 1px solid #e7e9ec;
	max-width: calc(100% - 480px);
    width: calc(100% - 480px);
}

.thaiartisan .coursePage.course .content .tab{
	display: flex;
	font-family: 'Sarabun', sans-serif;
	font-size: 20px;
	padding: 0 10px;
    gap: 5px;
	border-bottom: 1px solid #fafbfd;
	padding-bottom: 5px;
	cursor: pointer;
}

.thaiartisan .coursePage.course .content .progessPercent,
.thaiartisan .coursePage.course .content .activity,
.thaiartisan .coursePage.course .content .step{
	font-size: 17px;
    font-weight: bold;
	font-family: 'Sarabun', sans-serif;
	min-width: 200px;
}

.thaiartisan .coursePage.course .content .progessPercent{
	color: #bd2527;
}

.thaiartisan .coursePage.course .content .activity{
	color: #A3A5A9;
}

.thaiartisan .coursePage.course .content .progressBar{
	background: #e7e9ec;
    height: 3px;
	position: relative;
	width: 100%;
	margin: auto;
}

.thaiartisan .coursePage.course .content .progress{
	background: #bd2527;
	height: 3px;
    top: 0;
	position: absolute;
}

.thaiartisan .coursePage.course .content .tab.highlight{
	color: #bd2527 !important;
	border-bottom: 1px solid #bd2527 !important;
}

.thaiartisan .coursePage.course .content .courseContent{
	max-width: calc(100% - 480px);
    width: calc(100% - 480px);
	display: flex;
    flex-direction: column;
    gap: 20px;
}

.thaiartisan .coursePage.course .content .courseContent .label{
	font-size: 22px;
}

.thaiartisan .coursePage.course .content .courseContent .lessonContainer{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.thaiartisan .coursePage.course .content .courseContent .lesson{
	background: #f4f6f9;
    font-family: 'Sarabun', sans-serif;
    font-size: 23px;
    padding: 10px 20px;
    border-radius: 5px;
	cursor: pointer;
	display: flex;
    justify-content: space-between;
}

.thaiartisan .coursePage.course .content .courseContent .quiz{
	background: #f4f6f9;
    font-family: 'Sarabun', sans-serif;
    font-size: 20px;
		color: #bd2527;
    padding: 10px 20px;
		padding-left: 55px;
    border-radius: 5px;
	cursor: pointer;
	display: flex;
    justify-content: space-between;
}

.thaiartisan .coursePage.course .content .courseContent .lesson .lessonLink{
		text-decoration: none;
}

.thaiartisan .coursePage.course .content .courseContent .lesson .lessonLink:hover{
	color: #bd2527;
}

.thaiartisan .coursePage.course .content .courseContent .lesson .lessonStatus{
	color: #388E3C;
}

.thaiartisan .coursePage.course .content .courseContent .lesson:hover{
	color: #bd2527 !important;
}

.thaiartisan .coursePage.course .content .aboutContent{
	max-width: calc(100% - 480px);
    width: calc(100% - 480px);
	display: flex;
    flex-direction: column;
    gap: 20px;
}

.thaiartisan .coursePage.course .content .aboutContent .label{
	font-size: 22px;
}

.thaiartisan .coursePage.course .content .aboutContent .aboutContainer{
	background: #fff;
	border: 1px solid #E7E9EC;
	border-radius: 10px;
	padding: 25px 20px;
	width: 100%;
	font-family: 'Sarabun', sans-serif;
}

.thaiartisan .coursePage.course .content .aboutContent .aboutContainer .label{
	color: #000;
	font-size: 25px;
	font-weight: bold;
	/* cursor: pointer; */
}

.thaiartisan .coursePage.course .content .aboutContent .aboutContainer .avatar img{
	width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 3px;
	/* cursor: pointer; */
}

.thaiartisan .coursePage.course .content iframe.embed{
	width: 100%;
	height: 350px;
}

.thaiartisan .menuBar.lesson{
	max-width: 370px;
	min-width: 370px;
	box-shadow: inset -36px 0 40px -32px rgb(0 0 0 / 5%);
	padding: 0;
	overflow: hidden;
    height: 100vh;
	position: fixed;
}

.thaiartisan .lessonMenu .activityContainer{
	border-bottom: 1px solid #E7E9EC;
	padding: 20px 30px;
	padding-bottom: 20px;
}

.thaiartisan .lessonMenu .courseName{
	color: #333;
    font-size: 26px;
}

.thaiartisan .lessonMenu .progressBar{
	background: #e7e9ec;
    height: 3px;
	position: relative;
	margin-top: 30px;
    margin-bottom: 20px;
}

.thaiartisan .lessonMenu .progress{
	background: #bd2527;
	height: 3px;
    top: 0;
	position: absolute;
}

.thaiartisan .lessonMenu .progessPercent,
.thaiartisan .lessonMenu .step{
	color: #A3A5A9;
	font-size: 17px;
    font-weight: bold;
    font-family: 'Sarabun', sans-serif;
}

.thaiartisan .lessonMenu .lessonContainer{
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 10px 0;
}

.thaiartisan .lessonMenu .lesson{
    font-family: 'Sarabun', sans-serif;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 5px;
	cursor: pointer;
	color: #333;
	font-weight: bold;
	display: flex;
    justify-content: space-between;
}

.thaiartisan .lessonMenu .quiz{
	font-family: 'Sarabun', sans-serif;
	font-size: 20px;
	padding: 10px 30px;
	padding-left: 55px;
	border-radius: 5px;
cursor: pointer;
color: #bd2527;
font-weight: bold;
display: flex;
	justify-content: space-between;
}

.thaiartisan .lessonMenu .lessonHeader{
	font-family: 'Sarabun', sans-serif;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    font-weight: bolder;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #00000080;
    margin: 0 20px;
    padding: 10px 0px;
}

.thaiartisan .lessonMenu .lesson .lessonStatus {
    color: #388E3C;
}

.thaiartisan .lessonMenu .lesson:hover{
	color: #bd2527 !important;
	background: rgba(146,164,183,.05);
}

.thaiartisan .lessonMenu .quiz:hover{
	color: #bd2527 !important;
	background: rgba(146,164,183,.05);
}

.thaiartisan .lessonMenu .lesson.highlight{
	color: #bd2527 !important;
	background: rgba(146,164,183,.05);
}

.thaiartisan .lessonMenu .button{
	cursor: pointer;
    display: flex;
    font-size: 18px;
    font-family: 'Sarabun', sans-serif;
    font-weight: bold;
    background: rgba(0,0,0,.03);
    padding: 5px 10px;
    border-radius: 20px;
    gap: 10px;
    color: #A3A5A9;
	transition: all .3s;
}

.thaiartisan .lessonMenu .button:hover{
    background: rgba(0,0,0,.05);
}

.thaiartisan .lessonMenu .menu{
	cursor: pointer;
}

.thaiartisan .lessonPage{
	background: #fff;
	font-family: 'Sarabun', sans-serif;
	font-size: 23px;
}

.thaiartisan .lessonPage .lessonContainer{
	max-width: 760px;
    margin: auto;
	width: 100%;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.thaiartisan .lessonPage .lessonTopBar{
	max-width: 1140px;
	width: 100%;
	margin: auto;
	padding: 20px;
	display: flex;
    flex-direction: column;
    gap: 20px;
	font-size: 18px;
}

.thaiartisan .lessonPage .lessonState{
	border-bottom: 1px solid #E7E9EC;
	padding-bottom: 10px;
	color: #bd2527;
	font-weight: bold;
	font-size: 20px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.thaiartisan .lessonPage .lessonState .label{
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.thaiartisan .lessonPage .name{
	font-size: 23px;
	font-family: 'Kanit', sans-serif;	
}

.thaiartisan .lessonPage .avatar{
	font-size: 20px;	
}

.thaiartisan .lessonPage .avatar .label:hover{
	color: #c12428;
	cursor: pointer;
}

.thaiartisan .lessonPage .avatar img{
	width: 30px;
    height: 30px;
    object-fit: cover;
	border-radius: 3px;
}

.thaiartisan .lessonPage iframe.embed{
	width: 100%;
	height: 450px;
}

.thaiartisan .lessonPage img{
	max-width: 100%;
}

.thaiartisan .lessonPage .lessonTopBar .button{
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #a3a5a9;
	color: #fff;
	padding: 7px 20px;
	cursor: pointer;
	transition: all .3s;
	user-select: none;
}

.thaiartisan .lessonPage .lessonTopBar .button:first-child{
	border-radius: 5px 0 0 5px;
	border-right: 1px solid #fff;
}

.thaiartisan .lessonPage .lessonTopBar .button:last-child{
	border-radius: 0 5px 5px 0;
	border-left: 1px solid #fff;
}

.thaiartisan .lessonPage .lessonTopBar .button:hover{
	background: #bd2527;
}

.thaiartisan .lessonPage .lessonContainer .quiz{
	color: #585858;
    background: #f4f6f9;
    font-family: 'Sarabun', sans-serif;
    font-size: 23px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
	display: flex;
    justify-content: space-between;
	align-items: center;
}

.thaiartisan .lessonPage .lessonContainer .quiz:hover{
	color: #bd2527 !important;
}

.thaiartisan .lessonAssignment .label{
	padding: 20px 0;
}

.thaiartisan .lessonAssignment .fileContainer{
	border-radius: 4px;
	background: #FAFBFD;
	margin: 1em 0;
    padding: 1.5em;
	color: #728188;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
}

.thaiartisan .lessonAssignment .fileContainer .button.upload{
    background: #bd2527;
    color: #fff;
    text-align: center;
    padding: 5px 30px;
    border-radius: 20px;
    border: 1px solid #385DFF;
    font-size: 20px;
    cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: .5;
}

.thaiartisan .lessonAssignment .fileContainer .button.browse{
    background: #728188;
    color: #fff;
    width: 100px;
    border-radius: 5px 0 0 5px;
	padding: 5px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.thaiartisan .lessonAssignment .fileContainer .fileInput{
	border-radius: 0 5px 5px 0;
    font-style: italic;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
	cursor: pointer;
}

.thaiartisan .coursePage.course .content .courseContent .lessonContainer .footer{
	width: 0;
	height: 0;
}


.thaiartisan .lessonPage .lessonContainer .question {
	display: flex;
	gap: 10px;
	cursor: default;
}

.thaiartisan .lessonPage .lessonContainer .question p {
	display: inline;
}

.thaiartisan .lessonPage .lessonContainer .answer {
	display: flex;
	gap: 10px;
	width: 100%;
	transition: .2s;
	padding: 5px 10px;
	border-radius: 20px;
}

.thaiartisan .lessonPage .lessonContainer .answer:hover {
	background-color: #EEEEEE;
}

.thaiartisan .lessonPage .lessonContainer .answer input {
	margin: 0;
	padding: 0;
}

.thaiartisan .lessonPage .lessonContainer .answerLabel {
	display: inline-block;
	width: 100%;
	cursor: pointer;
}

.thaiartisan .lessonPage .button.selected {
	background-color: #2741d5;
    color: #fff;
    padding: 5px 20px;
    width: fit-content;
    border-radius: 30px;
    user-select: none;
    cursor: pointer;
    transition: .2s;
}

.thaiartisan .lessonPage .button {
	background-color: #b0bcfa;
    color: #fff;
    padding: 5px 20px;
    width: fit-content;
    border-radius: 30px;
    user-select: none;
    cursor: pointer;
    transition: .2s;
}

.thaiartisan .lessonPage .button.cancel {
	background-color: #a3a5a9;
    color: #fff;
    padding: 5px 20px;
    width: fit-content;
    border-radius: 30px;
    user-select: none;
    cursor: pointer;
    transition: .2s;
}
