:root {
	--editorWidth: 820px;
	--primaryColor: #409EFF;
	--primaryColor1: #796D60;
	--primaryColor2: #D2BAA155;
	--bgColor: #efefef;
	--fontColor: #FFFFFF;
	--bgColor1: #cfcfcf22;
	--gray: #CCCCCC;
	--reviewColor: #8590A6;
	--reviewBorderColor: #e9e9e9;
}

#jideEditorContent {
	width: var(--editorWidth);
	height: auto;
	outline: none;
	box-sizing: border-box;
	padding: 0 0.4em;
	position: relative;
	top: 0;
	font-size: 16px;
	padding-bottom: 3em;
}

#jideEditorContent:not(:focus):empty::before {
	content: attr(placeholder);
	color: #DEE0E3;
	display: block;
	pointer-events: none;
	margin-top: 0.5em;
}

#jideEditorContent pre {
	width: 100%;
	margin: 0;
	background: none;
	pointer-events: all !important;
	outline: none;
	box-sizing: border-box;
	padding: 0 1px;
}

#jideEditorContent code {
	width: fit-content;
	display: block;
	box-sizing: border-box;
	padding: 0 1px;
}

svg * {
	pointer-events: none;
}

#jideEditorContent>* {
	width: 100%;
	word-break: break-all;
	line-height: 1.5;
	border-radius: 0.2em;
	box-sizing: border-box;
}

#listTipsHelper {
	position: fixed;
	display: none;
	transform: translateX(12px);
	z-index: 1;
}

#listTipsHelper .tips::after,
#listTipsHelper .tips::before {
	display: inline-block !important;
}

li {
	margin-top: 0.8em;
	display: block;
	position: relative;
}

ol,
ul {
	counter-reset: listCount;
	padding: 0;
}

ul li::before {
	content: "\2022";
	padding: 0 5px;
	margin-right: 5px;
	color: #3370FF;
}

ol li::before {
	counter-increment: listCount;
	content: counter(listCount)".";
	pointer-events: all !important;
	padding: 0 5px;
	margin-right: 5px;
	cursor: pointer;
	color: #3370FF;
	border-radius: 3px;
}

ol li:hover::before {
	background-color: #3370ff1a;
}

div#helper {
	position: fixed;
	display: none;
	top: 0;
	transition: top .1s linear;
	transform: translateX(-100%);
	padding-left: 3em;
}

div#helperMore {
	border: 1px solid #aaa;
	border-radius: 0.5em;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	cursor: pointer;
	z-index: 2;
}

#helperMore:hover {
	background-color: var(--bgColor);
}

.currentState {
	width: 3.5em;
	height: 3.5em;
}

.currentState svg {
	width: 100%;
	height: 100%;
	background: none !important;
}

.more {
	width: 2.5em;
	height: 2.5em;
}

.more svg {
	height: 100%;
	width: 100%;
}

.more svg path {
	fill: #999;
}

#helperCon {
	position: absolute;
	display: none;
	top: 0;
	left: 5em;
	transform: translate(-100%, 0);
	border: 1px solid #e3e3e3;
	box-sizing: border-box;
	padding: 2em 0 0;
	border-radius: 1em;
	width: 36em;
	transition: left .1s linear;
	z-index: 2;
	background: #fff;
}

.helpItem {
	border-bottom: 1px solid #e3e3e3;
	box-sizing: border-box;
}

.helpItem:last-child {
	border: none;
}

.removeNode {
	cursor: pointer;
}

.htmlStyle {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	padding: 0 2em 2em;
}

.htmlStyle svg {
	width: 3.3em;
	height: 3.3em;
	margin: 1em;
	padding: 0.5em;
	cursor: pointer;
}

.htmlStyle svg * {
	pointer-events: none;
}

.htmlStyle svg:hover path {
	fill: var(--primaryColor1);
}

.currentHtmlStyle {
	background: var(--primaryColor2);
	border-radius: 0.5em;
}

.currentHtmlStyle path {
	fill: var(--primaryColor1);
}

.htmlStyleItem * {
	pointer-events: none;
}

div[data-type="h1"] {
	display: block;
	word-break: break-all;
	font-size: 1.6em;
	margin-block-start: 0.8em;
	margin-block-end: 0em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

div[data-type="h2"] {
	display: block;
	word-break: break-all;
	font-size: 1.35em;
	margin-block-start: 0.8em;
	margin-block-end: 0em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

div[data-type="h3"] {
	display: block;
	word-break: break-all;
	font-size: 1.23em;
	margin-block-start: 0.8em;
	margin-block-end: 0em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

div[data-type="h4"] {
	display: block;
	word-break: break-all;
	font-size: 1.1em;
	margin-block-start: 0.8em;
	margin-block-end: 0em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

div[data-type="h5"] {
	display: block;
	word-break: break-all;
	font-size: 1em;
	margin-block-start: 0.8em;
	margin-block-end: 0em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

div[data-type="h6"] {
	display: block;
	word-break: break-all;
	font-size: 1em;
	margin-block-start: 0.8em;
	margin-block-end: 0em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

div[data-type='p'] {
	width: 100%;
	word-break: break-all;
	line-height: 1.5;
	margin-top: 0.8em;
	border-radius: 0.2em;
	box-sizing: border-box;
	padding: 0 0.2em;
}

div[data-type='ol'],
div[data-type='ul'] {
	margin: 0;
	word-break: break-all;
	margin-top: 0.8em;
	padding: 0 0.2em;
}

div[data-type="code"] {
	border: 1px solid #DEE0E3;
	border-radius: 4px;
	background: #fcfcfc;
	margin-top: 0.8em;
	position: relative;
	padding: 0 1em;
}

video {
	pointer-events: all !important;
}

div[data-type="mediaModule"],
div[data-type="3DModule"] {
	margin-top: 0.8em;
	user-select: none;
	position: relative;
	display: flex;
	justify-content: space-evenly;
	padding: 0.2em;
}

div[data-type="mediaModule"] {
	display: block;
}

div[data-type="3DModule"] {
	display: block;
	position: relative;
}

div[data-type="3DModule"] iframe {
	border: 1px solid #e3e3e3;
	border-radius: 0.2em;
	pointer-events: all !important;
}

div[data-type="3DModule"] img {
	object-fit: cover;
	pointer-events: all !important;
}

div[data-type="mediaModule"] * {
	max-width: 100%;
}

.iframeLoading:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 132;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.5);
}

.iframeLoading::after {
	content: "";
	width: 5em;
	height: 5em;
	position: absolute;
	z-index: 132;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
	border-radius: 10em;
	border: 4px dashed var(--primaryColor);
	animation: iframeLoading 6s linear infinite;
}

@keyframes iframeLoading {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(720deg);
	}
}

.iframeHelper {
	position: fixed;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -100%);
	transition: top .2s, opacity .2s;
	box-sizing: border-box;
	padding-bottom: 1em;
}

.moduleChange {
	width: 20em;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	background: #fff;
	box-shadow: 0 0 15px #dbdbdb;
	padding: 1em 0 0.5em;
	border-radius: 0.7em;
}

.iframeHelper svg {
	width: 3.5em;
	height: 3.5em;
	cursor: pointer;
	padding: 0.2em;
	border-radius: 0.5em;
}

.iframeHelper svg path {
	fill: #5a5a5a;
}

.iframeHelper svg:hover {
	background: var(--primaryColor2);
}

.focusIframeModule path {
	fill: var(--primaryColor) !important;
}

.codeBlockTop {
	pointer-events: none !important;
	opacity: 0;
	display: flex;
	width: 100%;
	height: 2em;
	box-sizing: border-box;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	left: 0;
	top: 0;
	user-select: none;
}

.selectCodeLanguage {
	font-size: 15px;
	display: block;
	align-items: center;
	width: fit-content;
	position: relative;
	pointer-events: all !important;
}

.selectCodeLanguage * {
	pointer-events: all !important;
}

.selectCodeLanguage svg {
	width: 1em;
	height: 1em;
	margin-left: 0.5em;
	transform: rotate(0deg);
	transition: transform .2s;
}

.copyCode {
	position: sticky;
	right: 0;
	font-size: 14px;
	color: #666;
	pointer-events: all !important;
	cursor: pointer;
}

div[data-type="code"]:hover .codeBlockTop {
	pointer-events: all !important;
	opacity: 1;
}

.selectOptions {
	position: absolute;
	background: #fff;
	bottom: 0;
	transform: translateY(100%);
	border: 1px solid #DEE0E3;
	border-radius: 0.3em;
	pointer-events: none !important;
	opacity: 0;
	transition: opacity .2s;
}

.selectCodeLanguageOption {
	padding: 0.5em 1em;
	width: 6em;
	white-space: nowrap;
	font-size: 14px;
	pointer-events: none !important;
	cursor: pointer;
}

.selectCodeLanguageOption:hover {
	background: var(--bgColor);
}

.selectCodeLanguage:hover svg {
	transform: rotate(180deg);
}

.selectCodeLanguage:hover .selectCodeLanguageOption {
	pointer-events: all !important;
}

.selectCodeLanguage:hover .selectOptions {
	pointer-events: all !important;
	opacity: 1;
}

.currentCodeLanguage {
	color: var(--primaryColor);
}

.codeBlockContent {
	width: 100%;
	overflow: hidden;
	overflow-x: auto;
	padding-bottom: 2em;
	outline: none;
}

div[data-type="code"]:hover .codeBlockContent {
	pointer-events: all !important;
}

#jideEditorContent>div * {
	pointer-events: none;
}

#jideEditorContent>li {
	pointer-events: all;
}

a {
	pointer-events: all;
}

.helpItemChild {
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 1.5em 1em;
	border-radius: 0.2em;
	position: relative;
}

.helpItemChild:hover {
	background-color: #99999922;
}

.helpItemChildleft {
	display: flex;
	align-items: center;
	position: relative;
}

.helpItemChild svg {
	width: 3.5em;
	height: 3.5em;
	margin-right: 1em;
}

.helpItemMore {
	width: 2.5em !important;
	height: 2.5em !important;
}

.helpItemMore path {
	fill: #999;
}

.colorCon,
.addModuleCon,
.alignmentCon {
	position: absolute;
	top: 50%;
	right: 3em;
	transform: translate(100%, -50%);
	border: 1px solid #e3e3e3;
	box-sizing: border-box;
	border-radius: 0.5em;
	background: #fff;
	transition: right .2s, opacity .1s;
	opacity: 0;
	pointer-events: none;
}

.colorCon {
	padding: 1.5em;
}

.alignmentItemBtn:hover .alignmentCon {
	opacity: 1;
	pointer-events: all;
	right: 3px;
}

.helpColorBtn:hover .colorCon {
	opacity: 1;
	pointer-events: all;
	right: 3px;
}

.addModuleBtn:hover .addModuleCon {
	opacity: 1;
	pointer-events: all;
	right: 3px;
}

.alignmentItemFocus::after {
	content: "√";
	display: block;
	font-size: 3em;
	position: absolute;
	right: 0.5em;
}

.alignmentItemBtn:hover .alignmentItemFocus::after {
	content: "√";
	display: block;
	font-size: 3em;
	position: absolute;
	right: 0.5em;
}

.addModuleItem,
.alignmentItem {
	box-sizing: border-box;
	padding: 1em 2em;
	width: 30em;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.addModuleItem:hover,
.alignmentItem:hover {
	background-color: #99999922;
}

.alignmentItem:nth-child(3) {
	border-bottom: 1px solid #e3e3e3;
}

.indent_add {
	border-top: 1px solid #e3e3e3;
}

.addModuleItem svg,
.alignmentItem svg {
	margin-right: 2em;
}

.alignmentItemFocus {
	background: var(--primaryColor2);
	color: var(--primaryColor1);
}

.alignmentItemFocus svg path {
	fill: var(--primaryColor1);
}

.indentFocus {
	color: #DEE0E3;
	cursor: not-allowed !important;
}

.indentFocus svg path {
	fill: #DEE0E3 !important;
}

.fontColor>span {
	margin-top: 1em;
	display: inline-block;
}

.colorItem svg {
	box-sizing: border-box;
	padding: 0.4em;
	border: 1px solid #DEE0E3;
	cursor: pointer;
}

.colorItems {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1em;
}

.colorItems svg {
	box-sizing: border-box;
	width: 3.3em;
	height: auto;
	margin: 0.26em;
}

.colorItem {
	width: 4.2em !important;
	height: 4.2em !important;
	margin: 0.25em;
	border: 1px solid #DEE0E3;
	position: relative;
	cursor: pointer;
	box-sizing: border-box;
}

.htmlStyleSelectCon .colorItem:nth-child(1)::before,
div.colorItem:nth-child(1)::before {
	content: "";
	width: 140%;
	position: absolute;
	border-top: 1px solid #DEE0E3;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.defColor {
	width: 100%;
	text-align: center;
	padding: 0.3em 0;
	border: 1px solid #DEE0E3;
	border-radius: 0.3em;
	cursor: pointer;
	margin-top: 1em;
}

.helper1 {
	position: fixed;
	transform: translate(-50%, -50%);
	background: #fff;
	box-shadow: 0 0 20px #dfdfdf;
	display: flex;
	box-sizing: border-box;
	padding: 1.5em;
	border-radius: 1em;
	align-items: center;
	pointer-events: none;
	opacity: 0;
	transition: top .2s;
}

.helper1Item {
	margin: 0 1em;
	cursor: pointer;
	border-radius: 0.5em;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 0.5em;
	position: relative;
}

.helper1Item svg path {
	fill: #444;
}

.helper1Item:hover {
	background: var(--bgColor);
}

.down {
	transform: rotate(0deg);
	transition: transform .2s;
	width: 2.5em !important;
	height: 2.5em !important;
}

.select:hover .down {
	transform: rotate(180deg);
}

.helper1Item:nth-child(1)::after,
.helper1Item:nth-child(2)::after,
.helper1Item:nth-child(8)::after {
	content: "";
	height: 80%;
	position: absolute;
	right: -1em;
	border-left: 1px solid #888;
}

.htmlStyleSelectCon {
	position: absolute;
	bottom: 3em;
	left: -1.75em;
	transform: translateY(100%);
	box-sizing: border-box;
	padding-top: 2.5em;
	pointer-events: none;
	opacity: 0;
	transition: bottom .2s, opacity .3s;
}

.htmlStyleSelect {
	background: #fff;
	box-sizing: border-box;
	border: 1px solid #dfdfdf;
	border-radius: 0.5em;
}

.htmlStyleSelectItem {
	width: 32em;
	box-sizing: border-box;
	padding: 2em 2em;
	display: grid;
	align-items: center;
	justify-items: start;
	grid-template-columns: 6em 1fr;
	cursor: pointer;
	position: relative;
}

.helper1Item svg {
	width: 3.5em;
	height: 3.5em;
}

.htmlStyleSelectItem span {
	font-size: 2.5em;
}

.htmlStyleSelectItem:hover {
	background-color: var(--bgColor);
}

.htmlStyleSelectCon .colorCon {
	opacity: 1;
	pointer-events: none;
	right: 0;
	width: 32em;
	transform: translate(0, 0);
	position: relative;
}

.select:hover div,
.select:hover>div {
	bottom: 0;
	opacity: 1;
	pointer-events: all;
}

.htmlStyleSelectItem * {
	pointer-events: none;
}

.htmlStyleSelectCon .colorItems svg path {
	fill: unset;
}

.aLink {
	position: absolute;
	bottom: 2em;
	left: 50%;
	transform: translate(-50%, 100%);
	box-sizing: border-box;
	padding-top: 2em;
	opacity: 0;
	pointer-events: none !important;
	transition: bottom .2s, opacity .2s;
}

.aLinkBtn:hover .aLink {
	opacity: 1;
	pointer-events: all !important;
	bottom: 0;
}

.aLinkCon {
	background: #fff;
	display: grid;
	grid-template-columns: 1fr auto;
	justify-items: center;
	border: 1px solid #e3e3e3;
	padding: 3em;
	border-radius: 0.8em;
	width: 56em;
}

.aLinkCon input {
	border: 1px solid #e3e3e3;
	outline: none;
	padding: 0.6em 0.5em;
	width: 100%;
	box-sizing: border-box;
	border-radius: 0.2em;
}

.confirmLink {
	width: 10em;
	background: var(--primaryColor);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5em;
	margin-left: 3em;
	cursor: pointer;
	line-height: 0;
}

#jideEditorContent a {
	color: #3370FF;
	outline: none !important;
	text-decoration: none;
	cursor: pointer !important;
	pointer-events: all !important;
}

#jideEditorContent a:hover {
	text-decoration: underline !important;
}

.aHelper {
	position: fixed;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	transition: opacity .2s;
	opacity: 0;
	pointer-events: none;
}

.aHelperCon {
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 0.8em;
	box-sizing: border-box;
	box-shadow: 0 0 11px #e3e3e3;
	padding: 0 1.5em;
	width: 45em;
	display: grid;
	grid-template-columns: 1fr auto auto;
	font-size: 1.2em;
	align-items: center;
}

.aLinkUrl {
	width: 100%;
	overflow: hidden;
	user-select: none;
}

.aHelperCon svg {
	width: 3em;
	height: 6em;
	margin-left: 2em;
	cursor: pointer;
	position: relative;
	display: block;
	padding: 0.3em;
	box-sizing: border-box;
}

.aHelperCon svg path {
	fill: #444;
}

.tips {
	position: relative;
}

.tips::after {
	content: attr(tips);
	position: absolute;
	top: -1.5em;
	left: 50%;
	background-color: #000;
	color: #fff;
	transform: translate(-50%, -100%);
	display: none;
	width: fit-content;
	white-space: nowrap;
	padding: 1em;
	border-radius: 0.5em;
	pointer-events: none;
}

.tips::before {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	left: 50%;
	top: -1.5em;
	transform: translate(-50%, -1px) rotate(0);
	display: none;
	border: 0.9em solid transparent;
	border-top-color: #000;
	pointer-events: none;
}

.tips:hover::after,
.tips:hover::before {
	display: inline-block;
}

.editAltPop,
.editLink {
	position: fixed;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0%);
	width: 55em;
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 0.8em;
	padding: 2em 0;
	display: none;
}

.editAltItem,
.editLinkItem {
	height: 3.2em;
	box-sizing: border-box;
	padding: 0 1.5em;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	justify-items: start;
	font-size: 2em;
}

.editAltItem>span,
.editLinkItem>span {
	margin-right: 1em;
}

.editAltItem input,
.editLinkItem input {
	width: 100%;
	box-sizing: border-box;
	outline: none;
	padding: 0 0.5em;
	font-weight: 100;
	height: 75%;
	border: 1px solid #e3e3e3;
	border-radius: 0.2em;
}

.editAltItem div,
.editLinkItem div {
	width: 4em;
	height: 65%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin-left: 1em;
	border-radius: 0.2em;
	cursor: pointer;
	color: #fff;
	pointer-events: none;
}

.editAltItem div:not(:empty),
.editLinkItem div:not(:empty) {
	background: var(--primaryColor);
	pointer-events: all;
}

span.mediaModuleHelper {
	width: fit-content;
	height: fit-content;
	display: inline-block;
	border: 2px solid transparent;
	position: relative;
}


span.mediaModuleHelperMove {
	position: absolute;
	width: 16px;
	height: 16px;
	pointer-events: all !important;
}

span.mediaModuleHelperMove::after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 100em;
	border: 1px solid #2196f3;
	background: #fff;
}

span.mediaModuleHelperMove.leftTop {
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
}

span.mediaModuleHelperMove.rightTop {
	left: 100%;
	top: 0;
	transform: translate(-50%, -50%);
}

span.mediaModuleHelperMove.leftBottom {
	left: 0;
	bottom: 0;
	transform: translate(-50%, 50%);
}

span.mediaModuleHelperMove.rightBottom {
	left: 100%;
	bottom: 0;
	transform: translate(-50%, 50%);
}

.mediaModuleHelperMove {
	display: none;
}

span.mediaModuleHelper img {
	max-width: 100% !important;
}

.editLinkModulecontent,
.editAlt {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -100%);
	width: 4em;
	height: 3em;
	border-radius: 0.5em;
}

.editLinkModulecontent_show,
.editAlt_show {
	pointer-events: all !important;
}

.editLinkModulecontent::after,
.editAlt::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	opacity: 0;
	transform: translate(-50%, 0);
	transition: transform .2s, opacity .2s;
	background: #fff;
	width: 2.5em;
	height: 2.5em;
	box-shadow: 0 0 10px #aaa;
	border-radius: 0.5em;
	cursor: pointer;
	background-image: url(/pages/blog-article/img/edit.svg);
	background-size: 1em 1em;
	background-position: 0.75em 0.75em;
	background-repeat: no-repeat;
}

.editLinkModulecontent_show::after,
.editAlt_show::after {
	opacity: 1;
	transform: translate(-50%, -0.5em);
	pointer-events: all !important;
}

.selectMedia {
	border-color: #2196f363 !important;
}

.selectMedia span {
	display: inline-block !important;
}

.listHelper {
	position: fixed;
	left: 50%;
	top: 0;
	background: #fff;
	border: 1px solid #e3e3e3;
	font-size: 2.5em;
	border-radius: 0.3em;
	width: 14em;
	padding: 0.2em;
	display: none;
}

.listHelpItem {
	padding: 0.5em 1.5em;
	cursor: pointer;
	display: flex;
	align-items: center;
	border-radius: 0.3em;
}

.listHelpItem * {
	pointer-events: none;
}

.listHelpItem:hover {
	background-color: var(--bgColor);
}

.listHelpItem svg {
	width: 1.1em;
	height: 1.1em;
	margin-right: 0.5em;
}

.listHelpItem svg path {
	fill: #444;
}

.notEdit {
	color: #aaa !important;
	cursor: no-drop;
}

.notEdit path {
	fill: #aaa !important;
}

.insertTipsHelper:after {
	height: 100%;
	border-left: 3px solid #2196f399;
	content: "";
	position: absolute;
	right: 0;
}

.mediaItem {
	width: 100%;
	min-width: 50px;
	background-color: transparent;
	border-radius: 0.2em;
	box-sizing: border-box;
	margin-right: 0.5em;
	transition: backgroundColor .2s, width .2s;
	pointer-events: all !important;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mediaItem>span {
	margin-top: 0.5em;
}

.mediaItem>span:nth-child(1) {
	margin-top: 0;
}

div[data-type="mediaModule"]:hover .mediaItem {
	background-color: #F7F7F8;
}

.meidaDragHelper {
	position: fixed;
	display: none;
	box-shadow: 0 0 15px #e3e3e3;
}

.meidaDragHelper * {
	border-radius: 1em;
	width: 50em !important;
}

#dragCursor_grabbing * {
	cursor: grabbing !important;
}

#dragCursor_colResize * {
	cursor: col-resize !important;
}

.changeMediaItemSize {
	position: absolute;
	right: 0;
	top: 50%;
	width: 2px;
	height: 95%;
	margin: 0 !important;
	pointer-events: all !important;
	background-color: #3370FF;
	transform: translate(5px, -50%);
	cursor: col-resize;
}

.threeDProjectsCon {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 10%);
	z-index: 4;
	display: none;
}

.threeDProjects {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	width: 50%;
	aspect-ratio: 4/3;
	box-sizing: border-box;
	padding: 1em 0;
	display: grid;
	grid-template-rows: auto 1fr;
	border-radius: 1em;
}

.insert3DProjTitle {
	font-size: 2.5em;
	padding: 1em;
	display: grid;
	grid-template-columns: auto 1fr auto;
	justify-items: center;
	align-items: center;
}

.insert3DProjTitle>span {
	font-weight: bold;
}

.search_project_container {
	display: grid;
	grid-template-columns: 1fr auto;
	position: relative;
	gap: 1em;
	align-items: center;
}

.threeDProjects:has( .project_from[active]) .search_project_container{
	opacity: 0;
	pointer-events: none;
}

.search_project_container input {
	width: 20em;
	outline: none;
	height: 100%;
	box-sizing: border-box;
}

.search_project_container svg {
	width: 1.5em;
	height: 1.5em;
	position: absolute;
	right: 5.5em;
	cursor: pointer;
	display: none;
}

.search_project_container>div {
	font-weight: 400;
	background: var(--el-color-primary);
	padding: 0.5em 1em;
	color: #fff;
	border-radius: 0.25em;
	cursor: pointer;
}

.project_from {
	display: grid;
	grid-template-columns: repeat(2, calc(50% - 0.5em));
	width: 10em;
	height: 100%;
	gap: 1em;
	box-sizing: border-box;
	padding: 2px;
	background: var(--el-border-color-darker);
	border-radius: 0.25em;
	overflow: hidden;
	position: relative;
	align-items: center;
	cursor: pointer;
}

.project_from::before {
	content: "";
	width: calc(50% - 0.3em);
	position: absolute;
	height: calc(100% - 0.3em);
	background: var(--el-color-primary);
	left: 0.15em;
	border-radius: 0.25em;
	transition: left .2s;
}

.project_from[active]::before {
	left: calc(50% + 0.15em);
}

.project_from>div {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	z-index: 1;
}

.project_from>div:nth-child(1),
.project_from[active]>div:nth-child(2) {
	color: #fff;
}

.project_from>div:nth-child(2),
.project_from[active]>div:nth-child(1){
	color: inherit;
}

.scroll {
	width: 100%;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
}

.projects {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
    justify-items: center;
    align-items: start;
    height: fit-content;
    box-sizing: border-box;
    padding: 1em;
}

.scroll::-webkit-scrollbar {
	display: none;
}

.project {
	overflow: hidden;
	width: 95%;
	height: fit-content;
	margin-bottom: 2em;
	border-radius: 1.5em;
	cursor: pointer;
	padding-bottom: 1.5em;
}

.project[type="map"],
.threeDProjects:has( .project_from[active]) .project[type="model"]{
	display: none;
}

.threeDProjects:has( .project_from[active]) .project[type="map"]{
	display: block;
}


.project[loadingslot] {
	pointer-events: none;
}

.project * {
	pointer-events: none;
}

.project:hover {
	box-shadow: 0 0 15px #c5c5c5;
}

.project img {
	width: 100%;
	aspect-ratio: 2 / 1.5;
	object-fit: cover;
	background: #efefef;
}

.project[loadingslot] img {
	background: #efefef;
}

.project span {
	box-sizing: border-box;
	padding: 0.5em 1em;
}

.project span:empty {
	width: 16em;
	height: 1.5em;
	display: block;
	background: #efefef;
}

.loadMoreProject {
	margin: 0 auto 1em;
	width: fit-content;
	background: var(--el-color-primary);
	color: #fff;
	padding: 1em 2em;
	border-radius: 0.5em;
	cursor: pointer;
}

.threeDProjects:has( .project_from[active]) .loadMoreProject{
	display: none !important;
}

.play3D {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(1);
	transition: transform .2s;
	border-radius: 100vh;
	width: 6em;
	height: 6em;
	background-color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	display: block;
	pointer-events: all !important;
}

.play3D:hover {
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 0 15px #343434;
	background-color: #2196f3;
}

.play3D::before {
	content: "";
	width: 0;
	position: absolute;
	left: 0;
	top: 50%;
	border: 2em solid transparent;
	border-left-width: 3em;
	border-left-color: #fff;
	transform: translate(40%, -50%);
	border-radius: 3px;
}

.play3D::after {
	content: "3D";
	transform: translate(-50%, -50%) rotateY(180deg);
	transition: transform .2s, opacity .15s;
	position: absolute;
	opacity: 0;
	color: #2196f3;
	left: 50%;
	top: 50%;
	font-size: 0.725em;
	font-weight: bold;
}

.play3D:hover::after {
	opacity: 1;
	transform: translate(-50%, -50%) rotateY(0deg);
}

div[data-type="linkModule"] {
	margin-top: 0.8em;
	border-radius: 1em !important;
	position: relative;
}

div[data-type="linkModule"] a {
	color: #fff !important;
	font-size: 3em;
	box-sizing: border-box;
	display: grid;
	place-items: center;
	width: 100%;
	font-weight: 700;
	padding: 0.5em;
	background: linear-gradient(45deg, #4f40ff, var(--primaryColor));
	word-break: break-word !important;
	border-radius: 0.3333em;
}

div[data-type="videoModule"] {
	margin-top: 0.8em;
	position: relative;
}

body:has(#jideEditorContent[contenteditable="true"]) div[data-type="videoModule"]:hover .edit_video_module_size {
	display: block;
}

.edit_video_module_size {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 1px solid var(--primaryColor);
	box-sizing: border-box;
	top: 0;
	left: 0;
	display: none;
}

.edit_video_module_size>span {
	position: absolute;
	width: 0.5em;
	height: 0.5em;
	background: var(--primaryColor);
	pointer-events: all !important;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 50%);
	cursor: row-resize;
}

div[data-type="videoModule"] iframe {
	width: 100% !important;
	height: 100% !important;
	border: none !important;
}

.jidebEditor_pop {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border: 1px solid #e3e3e3;
	box-sizing: border-box;
	padding: 1em;
	border-radius: 0.2em;
	font-size: 2.5em;
	opacity: 0;
	pointer-events: none;
	transform: opacity .2s;
}

.jidebEditor_pop_show {
	opacity: 1;
	pointer-events: unset;
}

.jidebEditor_pop_title {
	margin-bottom: 1em;
	font-weight: 700;
}

input.insertVideoLinkInput {
	width: 20em;
	outline: none;
	border: 1px solid #e3e3e3;
	padding: 0.5em;
}

.jidebEditor_pop_footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 1em;
}

.insertVideoLinkBtn {
	display: inline;
	margin-left: 1em;
	border: 1px solid var(--primaryColor);
	color: var(--primaryColor);
	padding: 0.2em 1em;
	cursor: pointer;
	border-radius: 0.2em;
}

.insertVideoLinkBtn[confirm] {
	background: var(--primaryColor);
	color: #fff;
}