body {
	margin: 0 auto;
}

/**{
	box-sizing: border-box;
}*/

#ModelArea.ModalMode {
	background-color: black;
	opacity: 0.6;
}

input:not(.webboard-checkbox, .report-browse-checkbox, .InputDataAtom, .InputTimeAtom, .grid-edit-box, .sign-ok, .sign-cancel, .__WEBATOM_SEARCHCONTROL_INPUT_),
select {
	padding: 0;
	border: none;
	outline: none;
}

.border-none:not(svg) {
	border: none !important;
}

.border-none line {
	stroke: none !important;
}

/* 기본 영역 */
.Atom {
	visibility: visible;
	/* 그룹 아톰에서 보이기 위해*/
}

/* 객체표현 영역확장일 시, 화면 클릭 안되는 현상 수정 */
.Atom:not(#ModelArea > .Atom) {
	/* 기존에 해결됐지만 이부분으로 다시 클릭안되는 현상 발생해 주석처리
		별도로 확인작업 필요해보임*/
	/* z-index: 2; */
}

/* 화면 감춤 (공통)*/
.hide {
	display: none !important;
}

/* 웹스크롤 행삭제 (공통)*/
.remove {
	display: none !important;
}

/* 앱스크롤 열 삭제 (공통) */
.deleted {
	display: none !important;
}

/* 공간은 차지하고, 보이지는 않게 */
.hidden {
	visibility: hidden !important;
}

/* [모든 아톰 공통 속성] */
#ModelArea,
#ModelArea>.Atom,
body>.Atom,
.Atom .Atom,
.Top-Menu-Area>.Atom,
.Bottom-Menu-Area>.Atom {
	position: absolute;
}

/* [행번호 아톰] */
.LabelNumberAtom {
	text-align: center;
}

/* [직선그리기 아톰] */

/* 선 스타일 (공통) */
[data-border-style="0"] {
	border-style: solid;
}

[data-border-style="1"] {
	border-style: dashed;
}

[data-border-style="2"] {
	border-style: dotted;
}

/* 선 두께 (공통) */
[data-border-width="0"] .tabcontent,
[data-border-width="0"] {
	border-width: 0px !important;
}

[data-border-width="1"] {
	border-width: 1px;
}

[data-border-width="2"] {
	border-width: 2px;
}

[data-border-width="3"] {
	border-width: 3px;
}

[data-border-width="4"] {
	border-width: 4px;
}

.shadow:not(.DecorImageAtom) {
	/*padding: 10px;*/
	box-shadow: 5px 5px 8px rgb(187, 187, 187);
}

.shadow.DecorImageAtom {
	filter: drop-shadow(10px 6px 6px #c3c3c3);
}

/* 가로 */
.border-top {
	border-bottom: none;
}

/* 세로 */
.border-left {
	border-right: none;
}


/* [사선그리기 아톰] */

.FreeLineAtom {
	stroke: black;
	/* 기본색*/
}

/* 선 두께 */

.FreeLineAtom line[data-border-width="1"] {
	stroke-width: 1px;
}

.FreeLineAtom line[data-border-width="2"] {
	stroke-width: 2px;
}

.FreeLineAtom line[data-border-width="3"] {
	stroke-width: 3px;
}

.FreeLineAtom line[data-border-width="4"] {
	stroke-width: 4px;
}

/* 선스타일 */

.FreeLineAtom line[data-border-style="0"] {
	stroke-dasharray: 0;
}

.FreeLineAtom line[data-border-style="1"] {
	stroke-dasharray: 4;
}

.FreeLineAtom line[data-border-style="2"] {
	stroke-dasharray: 8;
}


/* 사각형 아톰 */

.RectangleAtom,
.OvalAtom,
.RoundSquareAtom {
	display: flex;
	box-sizing: border-box;
	overflow: hidden;
	border-color: black;
}

/* 원형 */
.OvalAtom {
	border-radius: 50%;
}

/* 텍스트 정렬*/
[data-vertical-align="T"] {
	align-items: flex-start;
	/*padding-bottom:calc(var(--height) - 1em - 2px);*/
}

[data-vertical-align="M"] {
	align-items: center;
}

[data-vertical-align="B"] {
	align-items: flex-end;
}


[data-align="L"] {
	justify-content: flex-start;
	text-align: left;
}

[data-align="C"] {
	justify-content: center;
	text-align: center;
}

[data-align="R"] {
	justify-content: flex-end;
	text-align: right;
}

input[data-align="L"],
textarea[data-align="L"],
th[data-align="L"],
td[data-align="L"] {
	text-align: left !important;
	background-position: calc(95%) center;
}

input[data-align="C"],
textarea[data-align="C"],
th[data-align="C"],
td[data-align="C"] {
	text-align: center !important;
	background-position: calc(95%) center;
}

input[data-align="R"],
textarea[data-align="R"],
th[data-align="R"],
td[data-align="R"] {
	text-align: right !important;
	background-position: calc(5%) center;
}

.InputDataAtom[data-align="C"] {
	text-align: center !important;
}

.ComboAtom[data-align="L"] {

	text-align-last: left;
}

.ComboAtom[data-align="C"] {

	text-align-last: center;
}

.ComboAtom[data-align="R"] {

	text-align-last: right;
	padding-right: 24px;
}

/* 라벨 */

/* 내용 태그 */
pre {
	margin: 0;
	white-space: pre-wrap;
	word-break: break-word;
}

pre:not(.RectangleAtom pre, .OvalAtom pre, .RoundSquareAtom pre) {
	padding: 2px;
}



.InputDataAtom {
	outline: none;
	box-sizing: border-box;
	padding: 0 5px;
	background: white;
	border: 1px solid #3c3c3c;
	white-space: pre-wrap !important;
	overflow: hidden auto !important;
}

.InputDataAtom:not(.vertscroll)::-webkit-scrollbar {
	display: none;
}

.InputDataAtom::-webkit-input-placeholder {
	/* Chrome, Safari, Opera */
	color: rgb(211, 211, 211);
}

.InputDataAtom:-moz-placeholder {
	/* Firefox 18- */
	color: rgb(211, 211, 211);
}

.InputDataAtom::-moz-placeholder {
	/* Firefox 19+ */
	color: rgb(211, 211, 211);
}

input.InputDataAtom[readonly] {
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 데이터가 없는 InputDataAtom에 다른 아톰 겹쳐놓고 연계효과 시도 시, 겹쳐진 아톰이 가려지는 현상 있어 추가 */
.NoData_InputDataAtom {
	width: 0px !important;
	padding: 0px !important;
}

textarea {
	resize: none;
	overflow-y: hidden;
	overflow-x: hidden;
}

/*
.InputDataAtom.contenteditable {
	overflow: auto !important;
}

.InputDataAtom.contenteditable::-webkit-scrollbar {
	display: none;
}
*/

.InputDataValiBollom {
	display: flex;
	padding: 10px 10px 10px 10px;
	background: #fcfcfd;
	border: black solid 1px;
	position: absolute;
	font-size: 16px;
	text-align: left;
	width: 200px;
	height: 20px;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	animation: fadeout 3s ease-in-out forwards;
	z-index: 999;
}

.InputDataValiBollom::before {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 20px 11px 0px 12.5px;
	border-color: black transparent;
	display: block;
	width: 0;
	left: 49px;
	bottom: -20px;
}

.InputDataValiBollom::after {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 20px 11px 0px 12.5px;
	border-color: #FFFFFF transparent;
	display: block;
	width: 0;
	left: 49px;
	bottom: -18.5px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type=number] {
	-moz-appearance: textfield;
}

/*
.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}
*/
.InputTimeAtom {
	outline: none;
	box-sizing: border-box;
	padding: 0 5px;
	background: white;
	border: 1px solid #3c3c3c;
	text-overflow: ellipsis;
}

input:-webkit-autofill {
	-webkit_box-shadow: 0 0 0 1000px transparent inset;
	-webkit-text-fill-color: var(--text-autofill);
	transition: background-color 5000s ease-in-out 0s;
}

input::-webkit-calendar-picker-indicator {
	display: none;
}

[contenteditable] {
	outline: none;
}

.ComboAtom {
	box-sizing: border-box;
	padding-left: 2px;
	border: 1px solid #3c3c3c;
}

/*
.select-left {
	text-align-last: left;
	text-align: left;
	-ms-text-align-last: left;
	-moz-text-align-last: left;
}

.select-center {
	text-align-last: center;
	text-align: center;
	-ms-text-align-last: center;
	-moz-text-align-last: center;
}

.select-right {
	text-align-last: right;
	text-align: right;
	-ms-text-align-last: right;
	-moz-text-align-last: right;
}
*/
select::-ms-expand {
	display: none;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 24px;
	background: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"> <path d="M7 10l5 5 5-5z"/> <path d="M0 0h24v24H0z" fill="none"/> </svg> ') 100% 50% no-repeat #fff;

}

select:disabled {
	opacity: 1 !important;
	background: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" > <path d="M7 10l5 5 5-5z" fill="gray" /> <path d="M0 0h24v24H0z" fill="none" /> </svg> ') 100% 50% no-repeat #fff;

}


.RadioAtom,
.CheckAtom {
	box-sizing: border-box;
	overflow: hidden;
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	user-select: none;
	display: flex;
	align-items: center;
}

.RadioAtom input,
.CheckAtom input {
	margin: 0;
	/*width: 0;
	margin: 0 0 0 1px;
	background-size: contain;
	background-repeat: no-repeat;*/
	float: left;
}

.RatingBarAtom {
	display: inline-block;
	direction: rtl;
}

.RadioBarInputAtom {
	margin: 0 !important;
	width: 0px;
	height: 0px;
}

.RadioAtom.disabled,
.CheckAtom.disabled {
	filter: grayscale(1);
	color: #878787 !important;

}

.RadioAtom.disabled img,
.CheckAtom.disabled img {
	opacity: 0.4;
}

[type=radio]+img {
	content: var(--p2, url("/sys/img/radio_enable_off.png"));
}

[type=radio]:checked+img {
	content: var(--p1, url("/sys/img/radio_enable_on.png"));
}

[type=checkbox]+img {
	content: var(--p2, url("/sys/img/checkbox_enable_off.png"));
}

[type=checkbox]:checked+img {
	content: var(--p1, url("/sys/img/checkbox_enable_on.png"));
}

.RadioAtom img,
.CheckAtom img {
	float: left;
	max-height: 100%;
}

.RadioAtom div,
.CheckAtom div {
	display: flex;
	height: 100%;
	word-break: break-word;
	overflow: hidden;
	padding-left: 6px;
	flex: auto;
}

/* 토글스위치 시작 */

.ToggleSwitch {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	appearance: none;
	position: relative;
	border-radius: 30em;
	background-color: lightgray;
	width: 90px;
	height: 50px;
	font-size: 18px;
	font-family: "맑은 고딕";
	color: #ffffff;
}


.ToggleSwitch::after {
	content: "";
	position: absolute;
	left: 0px;
	width: 55%;
	height: 100%;
	border-radius: 100%;
	transform: scale(0.9);
	background-color: white;
	transition: all 0.4s;
	box-shadow: -3px 2px 7px -2px black;
}

.ToggleSwitch.active::after {
	position: absolute;
	left: calc(45%);
}

.ToggleSwitch::after {
	bottom: 0;
}

.ToggleSwitch.disabled {
	opacity: 50%;
}

/* 토글스위치 끝 */

.d-none {
	display: none;
}

input[type='radio'],
input[type='radio']:checked,
input[type='checkbox']:not(.webboard-checkbox, .report-browse-checkbox, .context-menu-list input)

/*input[type='checkbox']:checked*/
	{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.EBookAnimationGroup,
.EBookAnimationGroup_ref {
	background-color: transparent;
	pointer-events: none;
}

.EBookAnimationGroup * {
	pointer-events: auto;
}

.EBookAnimationGroup svg {
	visibility: visible !important;
}

.flip {
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}

.DecorImageAtom {
	box-sizing: border-box;
}

.baseImg:not(.DecorImageAtom) {
	background-image: url('/sys/img/picture.png') !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: auto !important;
}

.DecorImageAtom img,
.EBookSingleImageAtom img {
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
}

.DecorImageAtom div {
	width: 100%;
	height: 100%;
	/*23.07.21. 김유진 출력시, 나무야관련 배경그래픽으로 설정되는 현상있어 추가*/
	-webkit-print-color-adjust: exact;
}

/*그림삽입 회전 및 대칭*/
[data-rotate="90"] {
	transform: rotate(90deg);
}

[data-rotate="180"] {
	transform: rotate(180deg);
}

[data-rotate="270"] {
	transform: rotate(270deg);
}

[data-flip="X"] {
	transform: scaleX(-1);
}

[data-flip="Y"] {
	transform: scaleY(-1);
}

[data-flip="XY"] {
	transform: scale(-1);
}


[data-rotate="90"][data-flip="X"] {
	transform: rotate(90deg) scaleX(-1);
}

[data-rotate="180"][data-flip="X"] {
	transform: rotate(180deg) scaleX(-1);
}

[data-rotate="270"][data-flip="X"] {
	transform: rotate(270deg) scaleX(-1);
}

[data-rotate="90"][data-flip="Y"] {
	transform: rotate(90deg) scaleY(-1);
}

[data-rotate="180"][data-flip="Y"] {
	transform: rotate(180deg) scaleY(-1);
}

[data-rotate="270"][data-flip="Y"] {
	transform: rotate(270deg) scaleY(-1);
}


[data-rotate="90"][data-flip="XY"] {
	transform: rotate(90deg) scale(-1);
}

[data-rotate="180"][data-flip="XY"] {
	transform: rotate(180deg) scale(-1);
}

[data-rotate="270"][data-flip="XY"] {
	transform: rotate(270deg) scale(-1);
}

/*23.04.07 김유진 가끔 다른 클래스에 의해 작동이 안되서 !important 추가*/
[data-display-type="0"] {
	background-position: center !important;
	background-repeat: no-repeat !important;
}

[data-display-type="1"] {
	background-position: top left !important;
	background-repeat: no-repeat !important;
	background-size: 100% 100% !important;
}

[data-display-type="2"] {
	background-position: top left !important;
	background-repeat: repeat !important;
}

[data-display-type="3"] {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
}

[data-display-type="5"] {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
}


[data-display-type="0"][data-background-position="T-L"] {
	background-position: top left;
}

[data-display-type="0"][data-background-position="T-C"] {
	background-position: top center;
}

[data-display-type="0"][data-background-position="T-R"] {
	background-position: top right;
}

[data-display-type="0"][data-background-position="C-L"] {
	background-position: center left;
}

[data-display-type="0"][data-background-position="C-C"] {
	background-position: center;
}

[data-display-type="0"][data-background-position="C-R"] {
	background-position: center right;
}

[data-display-type="0"][data-background-position="B-L"] {
	background-position: bottom left;
}

[data-display-type="0"][data-background-position="B-C"] {
	background-position: bottom center;
}

[data-display-type="0"][data-background-position="B-R"] {
	background-position: bottom right;
}

[data-border-radius="1"] {
	border-radius: 10px;
}

[data-border-radius="2"] {
	border-radius: 15px;
}

[data-border-radius="3"] {
	border-radius: 25px;
}

[data-border-radius="4"] {
	border-radius: 39px;
}

[data-border-radius="5"] {
	border-radius: 40px;
}

[data-border-radius="6"] {
	border-radius: 50px;
}

[data-border-radius="7"] {
	border-radius: 60px;
}

[data-border-radius="8"] {
	border-radius: 70px;
}

[data-border-radius="9"] {
	border-radius: 80px;
}


/* .WebPictureAtom {
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}*/

.WebPictureAtom,
.AppPictureAtom {
	border: solid 1px;
	box-sizing: border-box;
}

.WebPictureAtom input,
.AppPictureAtom input {
	display: none;
}

.baseImg2:not(.DecorImageAtom, .readonly, [data-input-type="4"], [data-input-type="5"]) {
	background-image: url('/sys/img/camera.png') !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
}

.baseImg2[data-input-type="4"]:not(.readonly) {
	background-image: url('/sys/img/sign.png') !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: 40% 40% !important;
}

.AppPictureAtom[data-input-type="5"] {
	background-size: 0 0 !important;
}

/* 웹탭뷰 */

.WebTabPanelAtom,
.AppTapViewAtom {
	overflow: hidden;
}

.AppTapViewAtom.tab-type3>.tabmenu {
	display: none;
}

.WebTabPanelAtom .container {
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	border: solid 1px #808080;
}

.tabcontents {
	height: 100%;
	width: 100%;
}

.AppTapViewAtom>.tabmenu {
	position: absolute;
	z-index: 1;
}

.AppTapViewAtom>.tabcontent {
	position: absolute;
	z-index: 0;
}

.tabcontent {
	display: none;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	animation: slide 1s;
}

.tabcontent.active {
	display: block;
}

.slide-type1 .tabcontent {
	display: block;
	/*left: 100% !important;*/
}

.slide-type4 .tabcontent {
	display: block;
}

.slide-type2 .tabcontents {
	position: relative;

	/* IE 미지원 */
	transform-style: preserve-3d;
}

.slide-type2 .tabcontent.isPage {
	position: absolute;
	display: flex;

}

.slide-type2 .tabcontents.next {
	transform: rotateY(-90deg);
	transition: transform 1s;
}

.slide-type2 .tabcontents.prev {
	transform: rotateY(90deg);
	transition: transform 1s;
}

.tab {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	width: max-content;
}

.WebTabPanelAtom li,
.AppTapViewAtom li {
	float: left;
	box-sizing: border-box;

	border-color: #808080;
	border-style: solid;
	border-width: 1px;
	word-break: break-word;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.1s;
}

.AppTapViewAtom .tabcontent {
	border-color: #808080;
	border-style: solid;
	border-width: 1px;
}

.WebTabPanelAtom li:not(.tab-type1 li, .tab-type2 li, .tab-type4 li),
.AppTapViewAtom li:not(.tab-type1 li, .tab-type2 li, .tab-type4 li) {
	filter: contrast(1.1) invert(0.30) brightness(1.2);
}

.WebTabPanelAtom li.active:not(.tab-type1 li, .tab-type2 li, .tab-type4 li),
.AppTapViewAtom li.active:not(.tab-type1 li, .tab-type2 li, .tab-type4 li) {
	filter: contrast(1) invert(0) brightness(1);
}

.AppTapViewAtom[data-border-width='0'] .tabmenu,
.AppTapViewAtom[data-border-width='0'] .tab,
.AppTapViewAtom[data-border-width='0'] .tab>li {
	border: none;
}

/* 아코디언 뷰*/
.AccordionViewAtom {
	box-sizing: border-box;
	overflow: hidden;
	overflow-y: auto;
	overflow-x: hidden;
}

.show-scrollbar::-webkit-scrollbar {
	width: 4px !important;
}

.AccordionViewAtom::-webkit-scrollbar {
	width: 0px;
}

.AccordionViewAtom::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 6px;
}

#board::-webkit-scrollbar-track {
	background: transparent;
}

.AccordionViewAtom>.tabTitle {
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	padding: 5px 10px;
}

.AccordionViewAtom>.tabTitle>.arrow-right,
.arrow-down {
	margin-left: auto;
	display: none;
}

.AccordionViewAtom>.tabTitle>.active {
	display: block !important;
	pointer-events: none;
}

.AccordionViewAtom>.tabTitle>span {
	pointer-events: none;
}

.AccordionViewAtom>.tabContent {
	position: relative;
	overflow: hidden;
	transition: height 1s ease;
}

.AccordionViewAtom>.tabContent.active {
	display: block !important;
}



/* 상, 하단 메뉴바 인덱스 최대로 고정 */
.Bottom-Menu-Area,
.Top-Menu-Area {
	z-index: 999;
}

.tab-type1 li,
.tab-type2 li,
.tab-type4 li {

	border: none;
}

.tab-type1 li div {
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background-color: white;
	border: solid 1px #808080;
	transition: background-color 0.2s ease;
}

.tab-type1 li.active div {
	background-color: #808080;
}

.tab-type4 li.active {
	border-bottom: 4px solid #000 !important;
}


[data-tab-align="top"] li {
	border-bottom: none;
	margin-left: -1px;
}

[data-tab-align="top"] li:first-child,
[data-tab-align="bottom"] li:first-child {
	margin-left: 0px;
}

[data-tab-align="left"] li:first-child,
[data-tab-align="right"] li:first-child {
	margin-top: 0px;
}

[data-tab-align="left"] li {
	margin-top: -1px;
	border-right: none;
}

[data-tab-align="right"] li {
	margin-top: -1px;
	border-left: none;
}

[data-tab-align="bottom"] li {
	margin-left: -1px;
	border-top: none;
}



[data-tab-align="left"],
[data-tab-align="right"],
[data-tab-align="bottom"],
[data-tab-align="top"] {
	display: flex;
}

[data-tab-align="bottom"],
[data-tab-align="top"] {
	flex-direction: column;
}

[data-tab-align="left"] ul,
[data-tab-align="right"] ul {
	display: flex;
	flex-direction: column;
}

li[data-img1],
li[data-img2] {
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}


.WebTableTagAtom {
	border-collapse: collapse;
}

.WebTableTagAtom table,
.WebTableTagAtom tr,
.WebTableTagAtom td {
	border: solid 1px black;
}

.WebTableTagAtom td {
	padding: 0;
}

.WebTableTagAtom td * {
	position: relative !important;
	border: none !important;
}



.ButtonAtom {
	box-sizing: border-box;
	border: solid 1px #797979;
	cursor: pointer;
	display: flex;
	border-radius: 5px;
	padding: 0;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	white-space: pre-wrap !important;
}

.ButtonAtom:hover:not([disabled], [data-img1], [data-img2]) {
	filter: brightness(93%);

}

.ButtonAtom[disabled] {
	opacity: 50% !important;
	cursor: default;
}


.ButtonAtom[data-img2]:hover,
.ButtonAtom[data-img1]:hover {
	background-color: transparent !important;

}

.ButtonAtom>.icon {
	background-repeat: no-repeat;
	background-position-y: center;
	width: calc((var(--iconSize) - var(--iconMargin)) * 1px) !important;
	height: calc((var(--iconSize) - var(--iconMargin)) * 1px) !important;
	padding: 0 5px;
}


.ButtonAtom>.icon[data-icon-align="0"] {
	background-position-x: calc(var(--iconMargin) * 1px);
}

.ButtonAtom>.icon[data-icon-align="2"] {
	background-position-x: calc(100% - var(--iconMargin) * 1px);
}

.ButtonAtom:disabled {
	cursor: no-drop;

}

.WebLoginAtom {
	background-repeat: no-repeat;
	background-position: center;
}

.LocAddrAtom {
	background-image: url(/sys/img/gps_atom.png);
	background-repeat: no-repeat;
	background-position: center;
	border: solid 1px black;
	box-sizing: border-box;
	overflow: hidden;
}

.PGAtom,
.PayPalAtom {
	box-sizing: border-box;
	border: solid 1px black;
	background-repeat: no-repeat;
	display: flex;
	background-size: 100% 100%;
	cursor: pointer;
}

.WebIFrameAtom {
	border: none;
}

.WebHtmlTagAtom p {
	margin: 0;
	padding: 0;
}

.WebHtmlTagAtom .ql-align-right {
	text-align: right;
}

.WebHtmlTagAtom .ql-align-center {
	text-align: center;
}

.WebHtmlTagAtom span[style~="color:"] a {
	color: inherit;
}

.WebHtmlTagAtom ul>li::marker,
.WebHtmlTagAtom ol>li::marker {
	color: var(--color);
	font-size: var(--fontSize);
}

.disabled {
	pointer-events: none;
}

.WebModelAtom {
	border: solid 1px black;
}

.auto-size {
	width: inherit !important;
	height: inherit !important;
}

.WebQuickLinkAtom:not(.smooth),
.FloatingBarAtom:not(.smooth) {
	position: fixed !important;
}

.WebScrollAtom {
	/*  background: aliceblue;*/
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.EBookAnimationGroup .WebScrollAtom>.page_button {
	z-index: 999;
}

.Row {
	position: relative;
	float: left;
	overflow: hidden;
}

.page_button {
	bottom: -40px;
	position: absolute;
	/*width:150%;*/
	min-width: 308px;
	height: 40px;
	/* background: #6eff002e;*/
	display: flex;
	justify-content: center;
	align-items: center;

}

.scroll_button {

	position: absolute;
	width: calc(100% + 24px);

	height: 33px;
	/*background: #6eff002e;*/
	display: flex;
	justify-content: space-between;
}

.scroll_button button {
	border: none;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	width: 11px;
	height: 33px;
}


.scroll_content {
	width: 100%;
	overflow-x: scroll;
}

.paginate_button {
	height: 37px;
	width: 37px;
	object-fit: contain;
}

span .paginate_button:not(:last-child) {
	/*  margin-right: 9px;*/
}

#scroll_first,
#scroll_next {
	margin-right: 6px;
}


.page_button {
	width: max-content;

}

.page_button a {
	cursor: default;
}

.page_button .active {
	color: black !important;
	font-weight: bold !important;
	/*
 font-style : normal  !important;*/
	text-decoration: none !important;
}

.page_button a:hover {
	text-decoration: underline;
	/* font-weight:normal;*/
	/*  font-style : normal;*/
	color: blue;
}

.page_button span {
	margin: 0 6px;
	min-width: 44px;
	text-align: center;
}

.page_button span a {
	padding: 0 5px;
}

#scroll_first,
#scroll_last {
	width: 47px;
}



input::-webkit-calendar-picker-indicator {
	opacity: 0;
	width: 0;
	padding: 0;
}

.WebDisplayAtom {
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}


.WebDisplayAtom .scroll_content {
	display: grid;
}

[data-effect-type="1"],
[data-effect-type="3"] {
	justify-content: flex-start;
}

[data-effect-type="1"] .scroll_content,
[data-effect-type="3"] .scroll_content {


	width: max-content;
	/*-webkit-animation: moveSlideX 5s linear infinite; */
	/*animation-name: moveSlideX;
    animation-direction: normal;
    animation-duration: 600ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;*/
	animation-delay: 1s;
}

[data-effect-type="0"] .scroll_content,
[data-effect-type="2"] .scroll_content {

	height: 100%;

	/* -webkit-animation: moveSlideY 5s linear infinite; */
	/*animation-name:moveSlideY ;
     animation-direction: normal;
    animation-duration: 600ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	animation-delay: 1s;*/


}

@keyframes slidein {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(100%);
	}
}


@keyframes moveSlideY {
	100% {
		transform: translateY(-100%);
	}
}

@keyframes moveSlideX {
	100% {
		transform: translateX(-100%);
	}
}


.WebRssAtom {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.WebBoardAtom,
.ReportBrowseAtom {
	overflow: hidden;
	display: grid;
	/* grid-template-columns: 1fr 1fr 1fr; */
	/* grid-template-columns: repeat(1, 1fr); */
	/*grid-template-rows: repeat(2, minmax(40px, auto));*/
	grid-auto-rows: minmax(1px, auto) max-content;
	/*	grid-template-rows: auto 40px 0px;*/
}

th {
	font-weight: unset;
}

.__REPORT_BROWSE_HEADER_NBODY_ .body {
	overflow-x: hidden;
}

.__WEBBOARD_HEADER_NBODY_,
.__REPORT_BROWSE_HEADER_NBODY_ {
	border: 1px solid #999999;

	width: inherit;

	box-sizing: border-box;

	display: grid;
	overflow-x: auto;
	/* justify-items: start; */
	grid-auto-rows: max-content minmax(1px, auto);
	/*align-content: start;*/
	/* grid-row: 1 / span 2;*/
}

.__WEBBOARD_HEADER_NBODY_::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.__WEBBOARD_HEADER_NBODY_::-webkit-scrollbar-track {
	background: inherit;
}

.__WEBBOARD_HEADER_NBODY_::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 6px;
}

.__WEBBOARD_HEADER_NBODY_::-webkit-scrollbar-thumb:hover {
	background-color: #555;
}

.__WEBBOARD_HEADER_NBODY_.__NO_HEAD,
.__REPORT_BROWSE_HEADER_NBODY_.__NO_HEAD {
	grid-auto-rows: unset;
}

/*
thead tr{
float: left;
}
th{
display:block;
float:left;
}*/



.WebBoardAtom .page_button {
	bottom: 0;
	position: unset;
	width: unset;
	min-width: 308px;
	height: 43px;
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.WebBoardAtom table,
.ReportBrowseAtom table {
	border-collapse: collapse;
	border-spacing: 0;
	width: fit-content;
	border: none;
	table-layout: fixed;
}

.WebBoardAtom th,
.WebBoardAtom td,
.ReportBrowseAtom th,
.ReportBrowseAtom td {
	text-align: left;
	padding: 1px 5px 0px 5px;
	overflow: hidden;
	white-space: nowrap;
	height: inherit;
}

.ReportBrowseAtom .head-content {
	position: relative !important;
	user-select: none;
}

.ReportBrowseAtom .head-content>.column-resizable-handle {
	position: absolute;
	width: 6px;
	height: 100%;
	top: 0;
	right: -3px;
	cursor: ew-resize;
}

.report-browse-column-combo {
	width: 130px;
	height: 25px;
	border: 1px solid gray;
	border-radius: 3px;
}

.report-browse-oper-combo {
	width: 50px;
	height: 25px;
	border: 1px solid gray;
	border-radius: 3px;
}

.report-browse-value-input {
	width: 130px;
	height: 25px;
	border: 1px solid gray !important;
	border-radius: 3px;
}

/* 게시판 아톰 스크롤 생기면 header와 body 크기가 달라져서 스크롤바는 숨기고 기능만 살림 */
.WebBoardAtom td {
	text-overflow: ellipsis;
}

.WebBoardAtom .body {
	display: inline-block;
	overflow-y: scroll;
}

.WebBoardAtom .body::-webkit-scrollbar {
	display: none;
}

.WebBoardAtom th,
.ReportBrowseAtom th {
	padding: 0px 5px;
	border-bottom: 1px solid #d3d3d3;

}

.WebBoardAtom th:not(:last-child),
.ReportBrowseAtom th:not(:last-child) {
	border-right: 1px solid #00000033;
}

.WebBoardAtom th:first-child,
.WebBoardAtom td:first-child,
.ReportBrowseAtom th:first-child,
.ReportBrowseAtom td:first-child {
	text-align: left;
}

.WebBoardAtom.separate tbody tr:nth-child(odd) {
	background-color: #e7f4ff;

}


.WebBoardAtom tbody tr:hover,
.ReportBrowseAtom tbody tr:hover {
	background-color: #f1f1f1;
}

.WebBoardAtom .header,
.WebBoardAtom tbody tr:hover,
.ReportBrowseAtom .header,
.ReportBrowseAtom tbody tr:hover {
	background: linear-gradient(#f4f4f4, #eeeeee, #dfdfdf);
}

.WebBoardAtom.grid-line tbody tr,
.ReportBrowseAtom.grid-line .body tr {

	background-image: url('/sys/img/line.png');
	background-repeat: repeat-x;
	background-position: center bottom;
}

.WebBoardAtom .ReplySimbol {
	display: inline-block;
	border-left: 3px solid;
	border-bottom: 3px solid;
	margin-right: 5px;
	border-color: #cdcdcd;
}

.headerAsc {
	background-image: url('/sys/img/browse/arrow_down.png');
	background-repeat: no-repeat;
	background-position: calc(95%) center;
	;
}

.headerDesc {
	background-image: url('/sys/img/browse/arrow_up.png');
	background-repeat: no-repeat;
	background-position: calc(95%) center;
	;
}

/* .header {
	overflow: hidden;
} */

.body,
.scroll_content,
.grid-body {
	overflow: overlay;
	transition: background-color 2ms;
	height: inherit;
}

.horz-scroll>.tabcontent {
	overflow-x: overlay;
	transition: background-color 2ms;
	height: inherit;
}

.vert-scroll>.tabcontent {
	overflow-y: overlay;
	transition: background-color 2ms;
	height: inherit;
}

.transparent .body {
	background: transparent !important;
}

.WebBoardAtom tr,
.ReportBrowseAtom tr {
	height: inherit;
}

.WebBoardAtom .body td,
.WebBoardAtom tr,
.ReportBrowseAtom .body td,
.ReportBrowseAtom tr {
	cursor: pointer;
}

.WebBoardAtom tr.selected,
.ReportBrowseAtom tr.selected {
	background-color: rgb(129, 192, 245) !important;
}

.body::-webkit-scrollbar,
.scroll_content::-webkit-scrollbar,
.grid-body::-webkit-scrollbar,
.horz-scroll>.tabcontent::-webkit-scrollbar,
.vert-scroll>.tabcontent::-webkit-scrollbar,
.SlidingViewAtom::-webkit-scrollbar,
.__REPORT_BROWSE_HEADER_NBODY_::-webkit-scrollbar,
.InputDataAtom.vertscroll::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background-color: transparent;
}

.body::-webkit-scrollbar-thumb,
.scroll_content::-webkit-scrollbar-thumb,
.grid-body::-webkit-scrollbar-thumb,
.horz-scroll>.tabcontent::-webkit-scrollbar-thumb,
.vert-scroll>.tabcontent::-webkit-scrollbar-thumb,
.SlidingViewAtom::-webkit-scrollbar-thumb,
.__REPORT_BROWSE_HEADER_NBODY_::-webkit-scrollbar-thumb,
.InputDataAtom.vertscroll::-webkit-scrollbar-thumb {
	/* background-color: #ffffff00; */
	background-color: #cecece;
	border-radius: 10px;
	background-clip: padding-box;
	border: 2px solid transparent;
}

.body:hover::-webkit-scrollbar-thumb,
.scroll_content:hover::-webkit-scrollbar-thumb,
.grid-body:hover::-webkit-scrollbar-thumb,
.horz-scroll>.tabcontent:hover::-webkit-scrollbar-thumb,
.vert-scroll>.tabcontent:hover::-webkit-scrollbar-thumb .SlidingViewAtom::-webkit-scrollbar-thumb,
.__REPORT_BROWSE_HEADER_NBODY_::-webkit-scrollbar-thumb,
.InputDataAtom.vertscroll::-webkit-scrollbar-thumb {
	background-color: #40404057;
}

.body::-webkit-scrollbar-thumb:active,
.scroll_content::-webkit-scrollbar-thumb:active,
.grid-body::-webkit-scrollbar-thumb:active,
.horz-scroll>.tabcontent::-webkit-scrollbar-thumb:active,
.vert-scroll>.tabcontent::-webkit-scrollbar-thumb:active,
.SlidingViewAtom::-webkit-scrollbar-thumb:active,
.__REPORT_BROWSE_HEADER_NBODY_::-webkit-scrollbar-thumb:active,
.InputDataAtom.vertscroll::-webkit-scrollbar-thumb:active {
	background-color: #404040ba;
}


.body::-webkit-scrollbar-track,
.scroll_content::-webkit-scrollbar-track,
.grid-body::-webkit-scrollbar-track,
.horz-scroll>.tabcontent::-webkit-scrollbar-track,
.vert-scroll>.tabcontent::-webkit-scrollbar-track,
.SlidingViewAtom::-webkit-scrollbar-track,
.__REPORT_BROWSE_HEADER_NBODY_::-webkit-scrollbar-track,
.InputDataAtom.vertscroll::-webkit-scrollbar-track {
	background-color: transparent;
}

.body::-webkit-scrollbar-corner,
.scroll_content::-webkit-scrollbar-corner,
.grid-body::-webkit-scrollbar-corner,
.horz-scroll>.tabcontent::-webkit-scrollbar-corner,
.vert-scroll>.tabcontent::-webkit-scrollbar-corner,
.SlidingViewAtom::-webkit-scrollbar-corner,
.__REPORT_BROWSE_HEADER_NBODY_::-webkit-scrollbar-corner,
.InputDataAtom.vertscroll::-webkit-scrollbar-corner {
	background-color: transparent;
	/* 우측 하단의 코너 부분 */
}

/*
.body:not(:hover)::-webkit-scrollbar {
	display: none;
}
*/

.__WEBATOM_SEARCHCONTROL_ {

	height: max-content;
	display: grid;
	/*width: 420px;*/
	justify-self: center;
	grid-template-columns: 80px auto auto;
	/*justify-content: center;
    align-items: center;*/

}


.__WEBATOM_SEARCHCONTROL_INPUT_ {
	font: inherit;
	max-width: 136px;
	border: 1px solid #878787;
	color: inherit;
}

.__WEBATOM_SEARCHCONTROL_SELECT_ {
	font: inherit;
	color: inherit;
	width: unset;
	border: 1px solid #878787;
	background-color: #f0f0f0;
	padding-right: 24px;
}

.__WEBATOM_SEARCHCONTROL_BUTTON_ {
	object-fit: contain;
	max-height: 25px;
	align-self: center;
	cursor: default;
}

.background-color-none {
	background-color: transparent !important;
}

.FileAttachAtom {
	border: 1px rgb(128, 128, 128) solid;
	background-image: url('/sys/img/attachatom_empty.png');
	background-repeat: no-repeat;
	background-position: center center;
}

.FileAttachAtom input {
	display: none;
}

.WebFileAttachAtom {
	box-sizing: border-box;
	background-color: white;
	display: grid;
	grid-template-columns: minmax(1px, auto) max-content;
}


.WebFileAttachAtom:not(.hide-line) {
	border: solid 1px black;
}

.WebFileAttachAtom .file-list {
	border-right: solid 1px #838891;
	overflow-x: hidden;
	overflow-y: auto;
	animation: all 1s;
}

.WebFileAttachAtom .file-list {
	border: solid 1px #838891;
}

.WebFileAttachAtom .file-list:hover {
	border-color: #bbddfb;
}

.file-list .item {
	margin: 1px;
	padding: 1px 10px;
	border-radius: 3px;
	border: solid 1px transparent;
	color: #042271 !important;
}

.file-list .item:hover,
.file-list .item.active:hover {

	border-color: #bbddfb;
	background: linear-gradient(#f4f4f4, #dcf3fe);
}

.file-list .item.active {


	border-color: #8dc6f8 !important;
	/*	background: linear-gradient(#f4f4f4, #c7c7c7);*/
	background: linear-gradient(#f4f4f4, #a7e1fc);
}




.WebFileAttachAtom label {

	margin: 2px;
	/* border-radius: 3px;

   color : #343638;
font-size : 12px;
border : solid 1px #838891 ;

background: linear-gradient(#f4f4f4, #eeeeee, #dfdfdf);
    font-style: initial;
		font-weight: normal;
*/

	align-self: center;



	width: 67px;
	/*height:23px;*/
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;


	height: calc(100% - 6px);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain, 0%;

}

.WebFileAttachAtom label:hover {
	background-size: 0%, contain;

}

.WebFileAttachAtom input {
	display: none;
}

.WebFileAttachAtom.ReadOnly label {
	visibility: hidden;
}

.WebFileAttachAtom.IconStyle label {
	display: none;
}


.WebFileAttachAtom.IconStyle .file-list {
	border-right: none;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}

.WebFileAttachAtom.IconStyle .item {
	width: 40px;
	height: 50px;
	overflow: hidden;
}

.custom-context-menu {
	position: absolute;
	box-sizing: border-box;
	background-color: #ffffff;
	box-shadow: 0 0 1px 2px lightgrey;
	z-index: 999;
	min-width: max-content;
}

.custom-context-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: transparent;
}

.custom-context-menu li {
	float: unset !important;
	padding: 3px 5px;
	cursor: pointer;
	border-width: 0px;
}

.custom-context-menu a {
	text-decoration: none;
	color: black;
}

.custom-context-menu li:hover {
	background-color: #f0f0f0;
}

.ui-datepicker {
	z-index: 999 !important;
}



.MessageAtom {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	border: solid 1px black;
}

.MessageAtom.mail {
	background-image: url('/sys/img/mail.png') !important;
}

.MessageAtom.push {
	background-image: url('/sys/img/push.png') !important;
}

.MessageAtom.sms {
	background-image: url('/sys/img/sms.png') !important;
}

.MessageAtom.smartpush {
	background-image: url('/sys/img/push.png') !important;
}

.VerbalTTSAtom {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	border: solid 1px black;
	background-image: url('/sys/img/verbal/tts.png') !important;
	cursor: pointer;
}

.VerbalTransAtom {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-image: url('/sys/img/verbal/translate.png') !important;
	cursor: pointer;
}


.VerbalSTTAtom {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;

	border: solid 1px black;
	background-image: url('/sys/img/verbal/stt.png') !important;
	cursor: pointer;

}


.VerbalITTAtom {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;

	border: solid 1px black;
	background-image: url('/sys/img/verbal/itt.png') !important;
	cursor: pointer;
}

.WebTableAtom {
	overflow: hidden;
	display: grid;
	grid-auto-rows: minmax(1px, auto) max-content;
}


.WebTableAtom table {
	border-collapse: collapse;
	border-spacing: 0;
	width: fit-content;

	border: none;
	table-layout: fixed;
}

.WebTableAtom th,
.WebTableAtom td {
	text-align: left;
	padding: 1px 5px 0px 5px;
	overflow: hidden;
	white-space: nowrap;
	height: inherit;

}


.WebTableAtom th {
	padding: 0px 5px;
	border-bottom: 1px solid #d3d3d3;

}

.WebTableAtom th:not(:last-child) {
	border-right: 1px solid #00000033;
}

.WebTableAtom th:first-child,
.WebTableAtom td:first-child {
	text-align: left;
}

.WebTableAtom.separate tbody tr:nth-child(even) {
	background-color: #fdf5e6;

}


.WebTableAtom tbody tr:hover {
	background-color: #f1f1f1;
}



.WebTableAtom thead,
.WebTableAtom tbody,
.WebTableAtom tr {
	height: 1.8em !important;
}

.WebTableAtom .body {
	overflow: hidden;
	border: solid 1px black;
	/*background-image: url('/sys/img/verbal/itt.png') !important;*/
}

.CalendarAtom {
	table-layout: fixed;
	box-sizing: border-box;
	/*border: 1px solid rgb(0, 0, 0); 23.03.02. 김유진 제너레이터에 처리하도록 수정*/
	border-spacing: 0px;
	/*background-color: white;*/
	border-collapse: collapse;
}

.CalendarAtom-date-text {
	padding-left: 2px;
}

.CalendarAtom-normal-tr>td {
	table-layout: fixed;
	box-sizing: border-box;
	border: 1px solid rgb(0, 0, 0);
	text-align: left;
	vertical-align: middle;
	padding-left: 1px;
	padding-right: 1px;
	vertical-align: top;
}

.CalendarAtom-date-div {
	display: flex;
	justify-content: center;
	align-items: top;
}

.CalendarAtom-date-div>span {
	margin: 0px 5px;
	color: rgb(0, 0, 0);
	padding-top: 4px;
}

.CalendarAtom-7day-td {
	table-layout: fixed;
	box-sizing: border-box;
	padding: 0px 0px 0px 0px;
	color: #000000FF;
	text-align: center;
}

.CalendarAtom-satday-td {
	color: blue;
}

.CalendarAtom-sunday-td,
.holyday {
	color: red;
}


.CalendarAtom-disabled-td {
	opacity: 0.3;
	color: black !important;
}

.bg-gray {
	background-color: #dbe4f1;
}

span.Calendar-inline-text {
	font-size: 13px;
	position: relative;
	/* left: 50%;
	transform: translateX(-50%); */
	text-align: center;
	background-color: #ea7067;
	color: white;
	width: 100%;
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	top: -3px;
}

div.Calendar-Schedule-text {
	white-space: nowrap;
	font-size: 13px;
	position: relative;
	text-align: center;
	margin-top: 1px;
	text-overflow: ellipsis;
	overflow: hidden;
	cursor: pointer;
}

div.Calendar-Schedule-list {
	font-size: 13px;
	color: #999999;
	cursor: pointer;
}

[data-calender-td-colspan="2"] {
	width: calc(200% + 3px);
}

[data-calender-td-colspan="3"] {
	width: calc(300% + 6px);
}

[data-calender-td-colspan="4"] {
	width: calc(400% + 9px);
}

[data-calender-td-colspan="5"] {
	width: calc(500% + 12px);
}

[data-calender-td-colspan="6"] {
	width: calc(600% + 15px);
}

[data-calender-td-colspan="7"] {
	width: calc(700% + 18px);
}

.WebSlidePanelAtom div[data-open="F"] ul {
	display: none;
}

.WebSlidePanelAtom li {
	list-style: none;
}

.WebSlideMenu[data-menu-active="false"] {
	background-image: var(--bgUrl1);
}

.WebSlideMenu[data-menu-active="true"] {
	background-image: var(--bgUrl2);
}

.ProgressAtom {
	background-color: rgb(230, 230, 230);
}

.ProgressAtom-bar {
	background-color: red;
	height: 100%;
}

.ProgressAtom-label,
.VerticalProgressAtom-label {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	text-align: center;
	transform: translate(-50%, -50%);
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	.SliderAtom {
		/* 크롬, 엣지, 웨일, 파이어폭스 , 오페라 */
		/*background:linear-gradient(to right, var(--f) 0% 50%, rgba(255, 0, 0, 0.3) 50% 100%);*/
		outline: none;
		transition: background 450ms ease-in;
		/*appearance: none;*/
		height: 6px;
		-webkit-appearance: none;
		-webkit-flex-basis: 100%;
	}

	.SliderAtom::-webkit-slider-thumb {
		appearance: none;
		-webkit-appearance: none;
		width: 20px;
		height: 20px;

		background: radial-gradient(white -140%,
				blue 80%);
		cursor: pointer;
		border-radius: 50%;
	}

	.SliderAtom::-moz-range-thumb {
		border: none;
		-moz-appearance: none;
		width: 20px;
		height: 20px;
		background: -moz-radial-gradient(white -140%,
				blue 80%);
		cursor: pointer;
		border-radius: 50%;
	}

	.min::-moz-range-thumb {
		margin-left: -2px;
	}

	.max::-moz-range-thumb {
		margin-left: 2px;
	}

	.min::-webkit-slider-thumb {
		margin-left: -2px;
	}

	.max::-webkit-slider-thumb {
		margin-left: 2px;
	}

	input[type=range] {
		margin: 0;
		padding: 0;
	}

	input[type=range]:focus {
		outline: none;
	}

	input[type=range]::-webkit-slider-thumb {
		-webkit-appearance: none;
	}

}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {


	.SliderAtom::-ms-track {
		height: 6px;
		background: transparent;
		border-color: transparent;
		border-width: 6px 0;
		color: transparent;

	}

	.SliderAtom::-ms-fill-lower {
		/*background: var(--ss);*/
		margin-left: 1px
	}

	.SliderAtom::-ms-fill-upper {
		/*background: var(--ss);*/
		opacity: 0.4;
		margin-right: 1px
	}

	.SliderAtom::-ms-thumb {
		border: none;
		height: 20px;
		width: 20px;
		border-radius: 50%;
		/*background: radial-gradient( white -140%, blue 80% );*/
	}
}

.SliderAtom::-webkit-slider-thumb {
	background: var(--thumb-color);
}

.WebMenuAtom,
.WebQuickLinkAtom,
.FloatingBarAtom {
	z-index: 3;
	/* 영역확장 아톰위엥 있을 시, 가려지는 현상 있어서 1추가*/
}

.WebMenuAtom ul.nav {
	margin: 0;
}

.WebFlashAtom .youtube-iframe {
	/* width: inherit; */
	/* height: inherit; */
	width: 100%;
	height: 100%;
	border-width: 0px;
}

.WebFlashAtom video {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.YoutubeAtom iframe {
	width: 100%;
	height: 100%;
}

.SNSLoginAtom {
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center;
}

.SNSLoginAtom #naver_id_login_anchor>img {
	display: none;
}

pre {
	font: inherit;
}

video {
	width: inherit;
	height: inherit;
}

.WebQuickLinkAtom {
	pointer-events: none;
}

.WebQuickLinkAtom * {
	pointer-events: all;
}

select {
	padding: 0px 4px;
}


#paypal-overlay {
	position: absolute;
	z-index: 2147483647;
	width: 100%;
	background-color: rgb(0 0 0 / 80%);
	cursor: pointer;
	text-align: center;
	height: -webkit-fill-available;
	display: grid;
	color: #fff;
	justify-content: center;
	justify-items: center;
	display: none;
}

#img1 {
	content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAyNCAzMiIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pbllNaW4gbWVldCIgeG1sbnM9Imh0dHA6JiN4MkY7JiN4MkY7d3d3LnczLm9yZyYjeDJGOzIwMDAmI3gyRjtzdmciPjxwYXRoIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuNyIgZD0iTSAyMC45MjQgNy4xNTcgQyAyMS4yMDQgNS4wNTcgMjAuOTI0IDMuNjU3IDE5LjgwMSAyLjM1NyBDIDE4LjU4MyAwLjk1NyAxNi40MyAwLjI1NyAxMy43MTYgMC4yNTcgTCA1Ljc1OCAwLjI1NyBDIDUuMjkgMC4yNTcgNC43MjkgMC43NTcgNC42MzQgMS4yNTcgTCAxLjM1OCAyMy40NTcgQyAxLjM1OCAyMy44NTcgMS42MzkgMjQuMzU3IDIuMTA3IDI0LjM1NyBMIDYuOTc1IDI0LjM1NyBMIDYuNjk0IDI2LjU1NyBDIDYuNiAyNi45NTcgNi44ODEgMjcuMjU3IDcuMjU1IDI3LjI1NyBMIDExLjM3NSAyNy4yNTcgQyAxMS44NDQgMjcuMjU3IDEyLjMxMSAyNi45NTcgMTIuNDA1IDI2LjQ1NyBMIDEyLjQwNSAyNi4xNTcgTCAxMy4yNDcgMjAuOTU3IEwgMTMuMjQ3IDIwLjc1NyBDIDEzLjM0MSAyMC4yNTcgMTMuODA5IDE5Ljg1NyAxNC4yNzcgMTkuODU3IEwgMTQuODQgMTkuODU3IEMgMTguODY0IDE5Ljg1NyAyMS45NTQgMTguMTU3IDIyLjg5IDEzLjE1NyBDIDIzLjM1OCAxMS4wNTcgMjMuMTcyIDkuMzU3IDIyLjA0OCA4LjE1NyBDIDIxLjc2NyA3Ljc1NyAyMS4yOTggNy40NTcgMjAuOTI0IDcuMTU3IEwgMjAuOTI0IDcuMTU3Ij48L3BhdGg+PHBhdGggZmlsbD0iI2ZmZmZmZiIgb3BhY2l0eT0iMC43IiBkPSJNIDIwLjkyNCA3LjE1NyBDIDIxLjIwNCA1LjA1NyAyMC45MjQgMy42NTcgMTkuODAxIDIuMzU3IEMgMTguNTgzIDAuOTU3IDE2LjQzIDAuMjU3IDEzLjcxNiAwLjI1NyBMIDUuNzU4IDAuMjU3IEMgNS4yOSAwLjI1NyA0LjcyOSAwLjc1NyA0LjYzNCAxLjI1NyBMIDEuMzU4IDIzLjQ1NyBDIDEuMzU4IDIzLjg1NyAxLjYzOSAyNC4zNTcgMi4xMDcgMjQuMzU3IEwgNi45NzUgMjQuMzU3IEwgOC4yODYgMTYuMDU3IEwgOC4xOTIgMTYuMzU3IEMgOC4yODYgMTUuNzU3IDguNzU0IDE1LjM1NyA5LjMxNSAxNS4zNTcgTCAxMS42NTUgMTUuMzU3IEMgMTYuMjQzIDE1LjM1NyAxOS44MDEgMTMuMzU3IDIwLjkyNCA3Ljc1NyBDIDIwLjgzMSA3LjQ1NyAyMC45MjQgNy4zNTcgMjAuOTI0IDcuMTU3Ij48L3BhdGg+PHBhdGggZmlsbD0iI2ZmZmZmZiIgb3BhY2l0eT0iMSIgZD0iTSA5LjUwNCA3LjE1NyBDIDkuNTk2IDYuODU3IDkuNzg0IDYuNTU3IDEwLjA2NSA2LjM1NyBDIDEwLjI1MSA2LjM1NyAxMC4zNDUgNi4yNTcgMTAuNTMyIDYuMjU3IEwgMTYuNzExIDYuMjU3IEMgMTcuNDYxIDYuMjU3IDE4LjIwOCA2LjM1NyAxOC43NzIgNi40NTcgQyAxOC45NTggNi40NTcgMTkuMTQ2IDYuNDU3IDE5LjMzMyA2LjU1NyBDIDE5LjUyIDYuNjU3IDE5LjcwNyA2LjY1NyAxOS44MDEgNi43NTcgQyAxOS44OTQgNi43NTcgMTkuOTg3IDYuNzU3IDIwLjA4MiA2Ljc1NyBDIDIwLjM2MiA2Ljg1NyAyMC42NDMgNy4wNTcgMjAuOTI0IDcuMTU3IEMgMjEuMjA0IDUuMDU3IDIwLjkyNCAzLjY1NyAxOS44MDEgMi4yNTcgQyAxOC42NzcgMC44NTcgMTYuNTI1IDAuMjU3IDEzLjgwOSAwLjI1NyBMIDUuNzU4IDAuMjU3IEMgNS4yOSAwLjI1NyA0LjcyOSAwLjY1NyA0LjYzNCAxLjI1NyBMIDEuMzU4IDIzLjQ1NyBDIDEuMzU4IDIzLjg1NyAxLjYzOSAyNC4zNTcgMi4xMDcgMjQuMzU3IEwgNi45NzUgMjQuMzU3IEwgOC4yODYgMTYuMDU3IEwgOS41MDQgNy4xNTcgWiI+PC9wYXRoPjwvc3ZnPg==");
	height: 36px;
}

#img2 {
	content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAxcHgiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMDEgMzIiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaW5ZTWluIG1lZXQiIHhtbG5zPSJodHRwOiYjeDJGOyYjeDJGO3d3dy53My5vcmcmI3gyRjsyMDAwJiN4MkY7c3ZnIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNIDEyLjIzNyAyLjggTCA0LjQzNyAyLjggQyAzLjkzNyAyLjggMy40MzcgMy4yIDMuMzM3IDMuNyBMIDAuMjM3IDIzLjcgQyAwLjEzNyAyNC4xIDAuNDM3IDI0LjQgMC44MzcgMjQuNCBMIDQuNTM3IDI0LjQgQyA1LjAzNyAyNC40IDUuNTM3IDI0IDUuNjM3IDIzLjUgTCA2LjQzNyAxOC4xIEMgNi41MzcgMTcuNiA2LjkzNyAxNy4yIDcuNTM3IDE3LjIgTCAxMC4wMzcgMTcuMiBDIDE1LjEzNyAxNy4yIDE4LjEzNyAxNC43IDE4LjkzNyA5LjggQyAxOS4yMzcgNy43IDE4LjkzNyA2IDE3LjkzNyA0LjggQyAxNi44MzcgMy41IDE0LjgzNyAyLjggMTIuMjM3IDIuOCBaIE0gMTMuMTM3IDEwLjEgQyAxMi43MzcgMTIuOSAxMC41MzcgMTIuOSA4LjUzNyAxMi45IEwgNy4zMzcgMTIuOSBMIDguMTM3IDcuNyBDIDguMTM3IDcuNCA4LjQzNyA3LjIgOC43MzcgNy4yIEwgOS4yMzcgNy4yIEMgMTAuNjM3IDcuMiAxMS45MzcgNy4yIDEyLjYzNyA4IEMgMTMuMTM3IDguNCAxMy4zMzcgOS4xIDEzLjEzNyAxMC4xIFoiPjwvcGF0aD48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNIDM1LjQzNyAxMCBMIDMxLjczNyAxMCBDIDMxLjQzNyAxMCAzMS4xMzcgMTAuMiAzMS4xMzcgMTAuNSBMIDMwLjkzNyAxMS41IEwgMzAuNjM3IDExLjEgQyAyOS44MzcgOS45IDI4LjAzNyA5LjUgMjYuMjM3IDkuNSBDIDIyLjEzNyA5LjUgMTguNjM3IDEyLjYgMTcuOTM3IDE3IEMgMTcuNTM3IDE5LjIgMTguMDM3IDIxLjMgMTkuMzM3IDIyLjcgQyAyMC40MzcgMjQgMjIuMTM3IDI0LjYgMjQuMDM3IDI0LjYgQyAyNy4zMzcgMjQuNiAyOS4yMzcgMjIuNSAyOS4yMzcgMjIuNSBMIDI5LjAzNyAyMy41IEMgMjguOTM3IDIzLjkgMjkuMjM3IDI0LjMgMjkuNjM3IDI0LjMgTCAzMy4wMzcgMjQuMyBDIDMzLjUzNyAyNC4zIDM0LjAzNyAyMy45IDM0LjEzNyAyMy40IEwgMzYuMTM3IDEwLjYgQyAzNi4yMzcgMTAuNCAzNS44MzcgMTAgMzUuNDM3IDEwIFogTSAzMC4zMzcgMTcuMiBDIDI5LjkzNyAxOS4zIDI4LjMzNyAyMC44IDI2LjEzNyAyMC44IEMgMjUuMDM3IDIwLjggMjQuMjM3IDIwLjUgMjMuNjM3IDE5LjggQyAyMy4wMzcgMTkuMSAyMi44MzcgMTguMiAyMy4wMzcgMTcuMiBDIDIzLjMzNyAxNS4xIDI1LjEzNyAxMy42IDI3LjIzNyAxMy42IEMgMjguMzM3IDEzLjYgMjkuMTM3IDE0IDI5LjczNyAxNC42IEMgMzAuMjM3IDE1LjMgMzAuNDM3IDE2LjIgMzAuMzM3IDE3LjIgWiI+PC9wYXRoPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGQ9Ik0gNTUuMzM3IDEwIEwgNTEuNjM3IDEwIEMgNTEuMjM3IDEwIDUwLjkzNyAxMC4yIDUwLjczNyAxMC41IEwgNDUuNTM3IDE4LjEgTCA0My4zMzcgMTAuOCBDIDQzLjIzNyAxMC4zIDQyLjczNyAxMCA0Mi4zMzcgMTAgTCAzOC42MzcgMTAgQyAzOC4yMzcgMTAgMzcuODM3IDEwLjQgMzguMDM3IDEwLjkgTCA0Mi4xMzcgMjMgTCAzOC4yMzcgMjguNCBDIDM3LjkzNyAyOC44IDM4LjIzNyAyOS40IDM4LjczNyAyOS40IEwgNDIuNDM3IDI5LjQgQyA0Mi44MzcgMjkuNCA0My4xMzcgMjkuMiA0My4zMzcgMjguOSBMIDU1LjgzNyAxMC45IEMgNTYuMTM3IDEwLjYgNTUuODM3IDEwIDU1LjMzNyAxMCBaIj48L3BhdGg+PHBhdGggZmlsbD0iI2ZmZmZmZiIgZD0iTSA2Ny43MzcgMi44IEwgNTkuOTM3IDIuOCBDIDU5LjQzNyAyLjggNTguOTM3IDMuMiA1OC44MzcgMy43IEwgNTUuNzM3IDIzLjYgQyA1NS42MzcgMjQgNTUuOTM3IDI0LjMgNTYuMzM3IDI0LjMgTCA2MC4zMzcgMjQuMyBDIDYwLjczNyAyNC4zIDYxLjAzNyAyNCA2MS4wMzcgMjMuNyBMIDYxLjkzNyAxOCBDIDYyLjAzNyAxNy41IDYyLjQzNyAxNy4xIDYzLjAzNyAxNy4xIEwgNjUuNTM3IDE3LjEgQyA3MC42MzcgMTcuMSA3My42MzcgMTQuNiA3NC40MzcgOS43IEMgNzQuNzM3IDcuNiA3NC40MzcgNS45IDczLjQzNyA0LjcgQyA3Mi4yMzcgMy41IDcwLjMzNyAyLjggNjcuNzM3IDIuOCBaIE0gNjguNjM3IDEwLjEgQyA2OC4yMzcgMTIuOSA2Ni4wMzcgMTIuOSA2NC4wMzcgMTIuOSBMIDYyLjgzNyAxMi45IEwgNjMuNjM3IDcuNyBDIDYzLjYzNyA3LjQgNjMuOTM3IDcuMiA2NC4yMzcgNy4yIEwgNjQuNzM3IDcuMiBDIDY2LjEzNyA3LjIgNjcuNDM3IDcuMiA2OC4xMzcgOCBDIDY4LjYzNyA4LjQgNjguNzM3IDkuMSA2OC42MzcgMTAuMSBaIj48L3BhdGg+PHBhdGggZmlsbD0iI2ZmZmZmZiIgZD0iTSA5MC45MzcgMTAgTCA4Ny4yMzcgMTAgQyA4Ni45MzcgMTAgODYuNjM3IDEwLjIgODYuNjM3IDEwLjUgTCA4Ni40MzcgMTEuNSBMIDg2LjEzNyAxMS4xIEMgODUuMzM3IDkuOSA4My41MzcgOS41IDgxLjczNyA5LjUgQyA3Ny42MzcgOS41IDc0LjEzNyAxMi42IDczLjQzNyAxNyBDIDczLjAzNyAxOS4yIDczLjUzNyAyMS4zIDc0LjgzNyAyMi43IEMgNzUuOTM3IDI0IDc3LjYzNyAyNC42IDc5LjUzNyAyNC42IEMgODIuODM3IDI0LjYgODQuNzM3IDIyLjUgODQuNzM3IDIyLjUgTCA4NC41MzcgMjMuNSBDIDg0LjQzNyAyMy45IDg0LjczNyAyNC4zIDg1LjEzNyAyNC4zIEwgODguNTM3IDI0LjMgQyA4OS4wMzcgMjQuMyA4OS41MzcgMjMuOSA4OS42MzcgMjMuNCBMIDkxLjYzNyAxMC42IEMgOTEuNjM3IDEwLjQgOTEuMzM3IDEwIDkwLjkzNyAxMCBaIE0gODUuNzM3IDE3LjIgQyA4NS4zMzcgMTkuMyA4My43MzcgMjAuOCA4MS41MzcgMjAuOCBDIDgwLjQzNyAyMC44IDc5LjYzNyAyMC41IDc5LjAzNyAxOS44IEMgNzguNDM3IDE5LjEgNzguMjM3IDE4LjIgNzguNDM3IDE3LjIgQyA3OC43MzcgMTUuMSA4MC41MzcgMTMuNiA4Mi42MzcgMTMuNiBDIDgzLjczNyAxMy42IDg0LjUzNyAxNCA4NS4xMzcgMTQuNiBDIDg1LjczNyAxNS4zIDg1LjkzNyAxNi4yIDg1LjczNyAxNy4yIFoiPjwvcGF0aD48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNIDk1LjMzNyAzLjMgTCA5Mi4xMzcgMjMuNiBDIDkyLjAzNyAyNCA5Mi4zMzcgMjQuMyA5Mi43MzcgMjQuMyBMIDk1LjkzNyAyNC4zIEMgOTYuNDM3IDI0LjMgOTYuOTM3IDIzLjkgOTcuMDM3IDIzLjQgTCAxMDAuMjM3IDMuNSBDIDEwMC4zMzcgMy4xIDEwMC4wMzcgMi44IDk5LjYzNyAyLjggTCA5Ni4wMzcgMi44IEMgOTUuNjM3IDIuOCA5NS40MzcgMyA5NS4zMzcgMy4zIFoiPjwvcGF0aD48L3N2Zz4=");
	height: 36px;
}

.paypal-checkout-close {
	height: 30px;
	width: 30px;
	margin-top: 20px;
	opacity: 0.6;
}

#paypal-overlay .paypal-checkout-close:before {
	transform: rotate(45deg);
}

#paypal-overlay .paypal-checkout-close:after {
	transform: rotate(-45deg);
}

.paypal-checkout-close:before,
.paypal-checkout-close:after {
	position: absolute;
	content: ' ';
	height: 30px;
	width: 2px;
	background-color: #fff;
}

.paypal-checkout-close:hover {
	opacity: 1;
}

.paypal-checkout-continue {
	font-weight: bold;
	text-decoration-line: underline;
}

.paypal-checkout-message {
	width: 360px;
	margin-bottom: 30px;
}

.paypal-checkout-logo {
	margin-bottom: 50px;

}

.paypal-checkout-modal {
	margin-top: -30px;
}


.ExtensionScrollAtom {
	overflow: auto;
}

.ExtensionScrollAtom .app-scroll-row {
	width: var(--rowWidth);
	height: var(--rowHeight);
	position: relative;
}

.ExtensionScrollAtom .app-scroll-origin-row {
	display: none;
}

.ExtensionScrollAtom[data-display-select-row='true'] .app-scroll-row.selected {
	background-color: var(--bgColor);
}

/*
.ExtensionScrollAtom .app-scroll-row > .Atom {
	position: relative;
}
*/

.ExtensionScrollAtom::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background-color: transparent;
}

.ExtensionScrollAtom::-webkit-scrollbar-thumb {
	background-color: #ffffff00;
	border-radius: 10px;
	background-clip: padding-box;
	border: 2px solid transparent;
}

.ExtensionScrollAtom:hover::-webkit-scrollbar-thumb {
	background-color: #40404057;
}

.DisplayExtensionScrollBar::-webkit-scrollbar-thumb {
	background-color: #40404057 !important;
}

.ExtensionScrollAtom:hover::-webkit-scrollbar-thumb {
	background-color: #40404057;
}

.ExtensionScrollAtom::-webkit-scrollbar-thumb:active {
	background-color: #404040ba;
}

.ExtensionScrollAtom::-webkit-scrollbar-track {
	background-color: transparent;
}

.ExtensionScrollAtom::-webkit-scrollbar-corner {
	background-color: transparent;
	/* 우측 하단의 코너 부분 */
}

/*======================수직 스크롤======================*/

.ExtensionScrollAtom[data-scroll-type="0"]>.app-scroll-col {
	width: 100%;
	height: var(--rowHeight);
}

.ExtensionScrollAtom[data-scroll-type="0"]>.app-scroll-col:last-child {
	padding-bottom: 1px;
	/* 스크롤 이벤트 발생시키기 위해 */
}

.ExtensionScrollAtom[data-scroll-type="0"] .app-scroll-row {
	float: left;
	white-space: nowrap;
}

.ExtensionScrollAtom[data-scroll-type="0"] .app-scroll-row>* {
	white-space: normal;
}

/*======================수평 스크롤======================*/
.ExtensionScrollAtom[data-scroll-type="1"] {
	white-space: nowrap;
	overflow-x: scroll;
	overflow-y: hidden;
}

.ExtensionScrollAtom[data-scroll-type="1"]>.app-scroll-col {
	width: var(--rowWidth);
	height: 100%;
	padding-right: 1px;
	/* 스크롤 이벤트 발생시키기 위해 */
	display: inline-block;
}

.ExtensionScrollAtom[data-scroll-type="1"]>.app-scroll-col:last-child {
	padding-right: 1px;
	/* 스크롤 이벤트 발생시키기 위해 */
}

/*======================확장 스크롤======================*/
.ExtensionScrollAtom[data-scroll-type="2"],
.ExtensionScrollAtom[data-scroll-type="3"] {
	overflow: unset;
}

.ExtensionScrollAtom[data-scroll-type="3"],
.ExtensionScrollAtom[data-scroll-type="2"] {
	height: unset !important;
	/* 계속 스크롤이 늘어나기 때문에 높이를 고정값으로 지정해주지 않음 */
}

.ExtensionScrollAtom[data-scroll-type="2"]>.app-scroll-col {
	width: 100%;
	height: var(--rowHeight);
}

.ExtensionScrollAtom[data-scroll-type="3"]>.app-scroll-col {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.ExtensionScrollAtom[data-scroll-type="2"] .app-scroll-row,
.ExtensionScrollAtom[data-scroll-type="3"] .app-scroll-row {
	float: left;
	white-space: nowrap;
}

/* ===================== 차트 ============================ */


/* ===================== 스낵바 메시지 ==================== */
.snackbar {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1;
	left: 50%;
	bottom: 30px;
	font-size: 17px;
}

.snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}

	to {
		bottom: 30px;
		opacity: 1;
	}
}

@keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}

	to {
		bottom: 30px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}

	to {
		bottom: 0;
		opacity: 0;
	}
}

@keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}

	to {
		bottom: 0;
		opacity: 0;
	}
}

/* ===================== 토스트 메시지 ==================== */
.toast-msg {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	min-width: 200px;
	min-height: 15px;
	max-width: 350px;
	/* 최대 너비 설정 */
	word-wrap: break-word;
	/* 너비를 넘어갈 경우 줄바꿈 설정 */
	background-color: rgb(146, 149, 151);
	color: #fff;
	text-align: center;
	border-radius: 10px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	z-index: 9999;
	font-size: 17px;
	user-select: none;

	opacity: 1;
	transition: opacity 1s ease-in-out;
	/* 자바스크립트로 opacity 0으로 바꿔주는 순간 1초동안 서서히 사라짐 */
}

/* ===================== 팝업묶기 시작 ==================== */
.PopupAtom {
	padding: 10px;
	width: 250px;
	height: 300px;
	border: gray solid 0.5px;
	border-radius: 3%;
	box-shadow: 3px 3px lightgrey;
	z-index: 10;
	background-color: white;
}

.PopupAtom>.header {
	width: 100%;
	height: 20px;
}

.PopupAtom>.header>.title {
	padding-left: 10px;
	font-weight: bold;
	font-size: 1rem;
	display: inline-block;
}

.PopupAtom>.header>.count {
	float: right;
	padding-top: 10px;
	font-size: 0.7rem;
	color: gray;
}

.PopupAtom>.body {
	height: calc(100% - 80px);
	overflow-y: scroll;
}

.PopupAtom>.body>table {
	width: 100%;
}

.PopupAtom>.body>table tr:hover,
.PopupAtom>.body>table tr.selected {
	background-color: rgb(241, 241, 241);
}

.PopupAtom>.body>table tr>td {
	white-space: nowrap;
	color: rgb(5, 34, 113);
}

.PopupAtom>.body>table tr>td:not(:last-child) {
	padding-right: 10px;
}

/*
.PopupAtom > .body > table > tbody > tr > td{
	text-align: center;
}
*/

.PopupAtom>.body::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background-color: transparent;
}

.PopupAtom>.body::-webkit-scrollbar-thumb {
	background-color: #ffffff00;
	border-radius: 10px;
	background-clip: padding-box;
	border: 2px solid transparent;
}

.PopupAtom>.body:hover::-webkit-scrollbar-thumb {
	background-color: #40404057;
}

.PopupAtom>.body::-webkit-scrollbar-thumb:active {
	background-color: #404040ba;
}

.PopupAtom>.body::-webkit-scrollbar-track {
	background-color: transparent;
}

.PopupAtom>.body::-webkit-scrollbar-corner {
	background-color: transparent;
	/* 우측 하단의 코너 부분 */
}

.PopupAtom>.footer {
	display: flex;
	flex-direction: row;
	height: 30px;
}

.PopupAtom>.footer>* {
	width: 50%;
	display: inline-block;
	text-align: center;
}

.PopupAtom>.footer>*:hover {
	background-color: rgb(190, 230, 253);
	cursor: pointer;
}

/* ===================== 팝업묶기 끝 ==================== */

/* 비밀번호는 땡땡이로 표시되는데 특정 폰트에서 그 땡땡이 문자를 지원안해서 떙땡이가 안보이는 버그 있음 */
.InputDataAtom[type='password'] {
	font-family: unset !important;
}

.webboard-checkbox,
.report-browse-checkbox {
	width: 18px;
	height: 18px;
}

.context-menu-list {
	z-index: 999 !important;
}

.grid-body {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow: scroll;
}

.grid-header-cell {
	border-left: 1px dotted rgb(170, 170, 170);
	background-color: rgb(170, 170, 170);
}

.grid-cell {
	border-right: 1px dotted rgb(170, 170, 170);
}

.grid-header-cell,
.grid-cell {
	padding: 0px 4px;
	border-bottom: 1px dotted rgb(170, 170, 170);
	overflow: hidden;
	text-overflow: ellipsis;
	color: rgb(0, 0, 0);
}

/* 그림크기유지 */
[data-image-stretch="0"] {
	background-repeat: no-repeat;
}

/* 영역크기맞춤 */
[data-image-stretch="1"] {
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

/* 그림비율맞춤 */
[data-image-stretch="2"] {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

/* 영역한쪽맞춤 */
[data-image-stretch="3"] {
	background-repeat: no-repeat;
	background-size: cover;
}

.EBookSingleImageAtom[data-background-position="T-L"] {
	background-position: top left;
}

.EBookSingleImageAtom[data-background-position="T-C"] {
	background-position: top center;
}

.EBookSingleImageAtom[data-background-position="T-R"] {
	background-position: top right;
}

.EBookSingleImageAtom[data-background-position="C-L"] {
	background-position: center left;
}

.EBookSingleImageAtom[data-background-position="C-C"] {
	background-position: center;
}

.EBookSingleImageAtom[data-background-position="C-R"] {
	background-position: center right;
}

.EBookSingleImageAtom[data-background-position="B-L"] {
	background-position: bottom left;
}

.EBookSingleImageAtom[data-background-position="B-C"] {
	background-position: bottom center;
}

.EBookSingleImageAtom[data-background-position="B-R"] {
	background-position: bottom right;
}

.hover-zoom {
	transition: all 0.2s linear;
}

.hover-zoom:hover {
	transform: scale(1.1) !important;
}

.EBookMultiImageAtom {
	display: table;
}

.EBookMultiImageAtom .row {
	display: table-row;
}

.EBookMultiImageAtom[data-multi-type="1"]>.answer-row {
	width: 100%;
	height: 50px;
	position: relative;
}

.EBookMultiImageAtom[data-multi-type="1"]>.answer-row>* {
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
}

.EBookMultiImageAtom[data-multi-type="1"]>.answer-row>.answer-mark {
	width: 50px;
	height: 50px;
	left: 0px;
	top: 0px;
	font-size: 36px;
	font-weight: bold;
}

.EBookMultiImageAtom[data-multi-type="1"]>.answer-row>.answer-comment {
	height: 50px;
	left: 50px;
	top: 0px;
}

.EBookMultiImageAtom .cell {
	position: relative;
	display: table-cell;
}

.EBookMultiImageAtom .cell>div,
.EBookMultiImageAtom .cell>img {
	box-sizing: border-box;
	margin: 2px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
}

.EBookMultiImageAtom .cell>* {
	position: absolute;
}

.EBookMultiImageAtom .cell>img {
	opacity: 0;
}

.EBookMultiImageAtom .cell>.check-box {
	left: 0px;
	bottom: 0px;
	width: 30px;
	height: 30px;
	background-size: 100% 100%;
}

.EBookMultiImageAtom .cell>.check-box {
	content: var(--p2, url("/sys/img/checkbox_disable_on.png"));
	cursor: pointer;
}

.EBookMultiImageAtom .cell>.check-box:checked {
	content: var(--p1, url("/sys/img/checkbox_enable_on.png"));
}

.EBookMultiImageAtom .cell>.check-answer-btn {
	right: 0px;
	bottom: 0px;
	width: 80px;
	height: 30px;
	border: none;
	background-color: gray;
	color: white;
	font-weight: bold;
	border-radius: 5px;
	font-size: 15px;
	cursor: pointer;
}

.slide-btn {
	width: 16px;
	height: 16px;
}

.slide-btn:not(.selected) {
	background-color: rgb(211, 211, 211);
}

.slide-btn.selected {
	background-color: rgb(15, 134, 134);
}

.slide-btn.circle {
	border-radius: 50%;
}

.EBookSlideImageAtom ul {
	margin: 0 auto;
	width: 450px;
	height: 338px;
}

.EBookSlideImageAtom ul,
.EBookSlideImageAtom li {
	list-style: none;
	height: 100%;
}

.EBookSlideImageAtom li>div {
	height: calc(100% - 2px);
	position: absolute;
}

.EBookSlideImageAtom img {
	opacity: 0;
	width: 100%;
	height: auto;
}

.slide-btn-wrapper {
	list-style-type: none;
	position: absolute;
}

.slide-btn-wrapper span {
	float: left;
	display: inline-block;
}

.slide-btn-wrapper span:not(:last-child) {
	margin-right: 5px;
	margin-bottom: 5px;
}

/* 원형 진행표시란 */
.RadialProgressAtom .rs-handle,
.RadialProgressAtom .rs-range {
	background: #4783B5;
	stroke: var(--range-color) !important;
}

.RadialProgressAtom .rs-path {
	stroke: var(--path-color) !important;
}

/* 원형 슬라이더 */

/* 그 외 css는 thirdparty파일에서 수정 */

/* 손잡이 모양 */
.RadialSliderAtom .rs-handle,
.RadialRangeProgressAtom .rs-handle {
	background: radial-gradient(ellipse at center, #00bfff70 0%, #00BFFF 100%);
}

/* 원형 슬라이더 끝 */

/* 범위 슬라이더 */

.RangeSliderAtom #slider-range {
	border: none;
	border-radius: 0;
	height: 6px;
	background: #CCF2FF;
}

.RangeSliderAtom .ui-widget-header {
	background: var(--path-color);
}

.RangeSliderAtom .ui-slider {
	background: var(--range-color) !important;
}

.RangeSliderAtom .ui-slider-handle {
	outline: none;
	border: none !important;
	cursor: pointer !important;
	border-radius: 50%;
	top: -7px !important;
	background: radial-gradient(ellipse at center, #00bfff70 0%, #00BFFF 100%) !important;
}

/* 범위 슬라이더 끝 */


/* ======================== 북모델 네비게이션 바 시작 ======================== */
.navigation-toolbar {
	width: 800px;
	height: 55px;
	background-image: url("/sys/img/EBook/navigationToolBar/toolbar_bg.png");
	background-size: 100% 100%;
	position: relative;
	margin-top: 23px;
	margin-right: auto;
	margin-left: auto;
}

.navigation-toolbar>* {
	position: absolute;
}

.navigation-toolbar-student {
	left: 70px;
}

.navigation-toolbar-divider {
	top: 13px;
	left: 150px;
}

.navigation-toolbar-prev,
.navigation-toolbar-next,
.navigation-toolbar-change,
.navigation-toolbar-hidden,
.navigation-toolbar-show,
.navigation-toolbar-full {
	border: 0;
	background-color: transparent;
	padding: 0
}

.navigation-toolbar-prev>img,
.navigation-toolbar-next>img,
.navigation-toolbar-change>img,
.navigation-toolbar-hidden>img,
.navigation-toolbar-show>img,
.navigation-toolbar-full>img {
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.navigation-toolbar-prev {
	width: 45px;
	height: 45px;
	top: 5px;
	left: 170px;
}

.navigation-toolbar-next {
	width: 45px;
	height: 45px;
	top: 5px;
	left: 595px;
}

.navigation-toolbar-change {
	width: 70px;
	height: 51px;
	top: 1px;
	left: 660px;
}

.navigation-toolbar-hidden {
	width: 20px;
	height: 21px;
	top: -20px;
	left: 740px;
}

.navigation-toolbar-show {
	width: 20px;
	height: 21px;
	left: 740px;
	top: 30px;
}

.navigation-toolbar-select {
	top: 11px;
	left: 234px;
	width: 344px;
	height: 33px;
	background-size: 800px 800px;
	background-image: url("/sys/img/EBook/navigationToolBar/toolbar_title.png");
	background-color: lightslategray;
	color: white;
	border-radius: 10px;
	font-size: 20px;
	text-align-last: center;
	background-position: center center;
	appearance: auto !important
}

.navigation-toolbar-full {
	position: fixed;
	right: 13px;
	top: 13px;
	width: 54px;
	height: 54px;
}

#ModelArea.ebook {
	margin: 0 auto;
}

#ModelArea {
	-webkit-print-color-adjust: exact;
}

/* ======================== 북모델 네비게이션 바 끝 ======================== */

.PassAuthAtom {
	background-image: url('/sys/img/pass/pass.png');
	background-size: 100% 100%;
	cursor: pointer;
}

.CarouselImageAtom[data-animation-type="1"] li,
.CarouselImageAtom[data-animation-type="1"] li>div {
	height: 100%;
	background-size: 100% 100%;
}

.CarouselImageAtom[data-animation-type="0"] li,
.CarouselImageAtom[data-animation-type="0"] li>div {
	height: 100%;
	background-size: 100% 100%;
}

.CarouselImageAtom .progress-bar {
	position: relative;
	width: 100%;
	-webkit-appearance: none;
	width: 100%;
	background: transparent;
}

.CarouselImageAtom .progress-bar::-webkit-slider-thumb {
	-webkit-appearance: none;
	background: rgb(229, 229, 229);
	cursor: pointer;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	margin-top: -6px;
}

.CarouselImageAtom .progress-bar::-webkit-slider-runnable-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	background: rgb(229, 229, 229);
	border-radius: 1.3px;
}

.CarouselImageAtom ul {
	margin: 0px;
}

.ExpandViewAtom .main-view {
	position: absolute;
	overflow: hidden;
	width: 100%;
}

.ExpandViewAtom[data-expand-type='top'] .main-view {
	top: 0px;
}

.ExpandViewAtom[data-expand-type='bottom'] .main-view {
	bottom: 0px;
}

.ExpandViewAtom .sub-view {
	position: absolute;
	overflow: hidden;
	width: 100%;
}

.ExpandViewAtom:not([data-border-width="0"]) .sub-view {
	border-top: 1px solid #808080;
}

.ExpandViewAtom[data-expand-type='top'] .sub-view {
	bottom: 0px;
}

.ExpandViewAtom[data-expand-type='bottom'] .sub-view {
	top: 0px;
}

.over-lay-bg {
	width: 100vw;
	height: 100vh;
	background-color: black;
	position: fixed;
	top: 0px;
	left: 0px;
	opacity: 0.6;
	z-index: 999;
}

.child-form {
	border: none;
}

.child-form,
.sign-popup {
	z-index: 1000;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sign-popup {
	width: 500px;
	height: 500px;
	background-color: white;
}

.sign-canvas:not(.inner) {
	width: 480px;
	height: 440px;
	margin-top: 10px;
	border: solid black 1px;
}

.sign-canvas {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	cursor: url(/sys/img/sign.png) 10 62, url(/sys/img/sign.png) 10 62, auto;
}

.sign-ok,
.sign-cancel {
	z-index: 1000;
	position: absolute;
	width: 100px;
	height: 30px;
	bottom: 10px;
}

.sign-ok {
	right: 120px;
}

.sign-cancel {
	right: 10px;
}

.inner-sign-ok {
	background-image: url(/sys/img/save.png);
	width: 16px;
	height: 16px;
	background-size: 100% 100%;
	position: absolute;
	right: 20px;
}

.inner-sign-delete {
	background-image: url(/sys/img/delete.png);
	width: 16px;
	height: 16px;
	background-size: 100% 100%;
	position: absolute;
	right: 0px;
}

.InputDataAtom.icon {
	background-repeat: no-repeat;
	background-position-y: center;
	background-size: auto calc(100% - calc(var(--iconMargin) * 2px));
}


.InputDataAtom.icon[data-icon-align="0"] {
	background-position-x: calc(var(--iconMargin) * 1px);
}

.InputDataAtom.icon[data-icon-align="1"] {
	background-position-x: calc(100% - var(--iconMargin) * 1px);
}

.Top-Menu-Area {
	position: fixed;
	top: 0px;
	background-color: white;
}

.Bottom-Menu-Area {
	position: fixed;
	bottom: 0px;
	background-color: white;
}

.QRCodeAtom>img {
	position: absolute;
	width: 80%;
	height: 80%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#context-menu-layer {
	height: 100vh !important;
}





.loading-spinner {
	animation: rotator 1.4s linear infinite;
	position: fixed;
	left: calc(50% - 32.5px);
	top: calc(50% - 32.5px);
}

@keyframes rotator {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(270deg);
	}
}

.loading-spinner-path {
	stroke-dasharray: 187;
	stroke-dashoffset: 0;
	transform-origin: center;
	animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@keyframes colors {
	0% {
		stroke: #4285F4;
	}

	25% {
		stroke: #DE3E35;
	}

	50% {
		stroke: #F7C223;
	}

	75% {
		stroke: #1B9A59;
	}

	100% {
		stroke: #4285F4;
	}
}

@keyframes dash {
	0% {
		stroke-dashoffset: 187;
	}

	50% {
		stroke-dashoffset: 46.75;
		transform: rotate(135deg);
	}

	100% {
		stroke-dashoffset: 187;
		transform: rotate(450deg);
	}
}

/*# sourceMappingURL=loading.css.map */

/* AIBOOKVIEWER */

.memo-pin {
	background-image: url('/sys/img/sign.png') !important;
	background-size: cover;
	/* 배경 이미지 크기 설정 */
	background-position: center;
	/* 배경 이미지 위치 설정 */
}

.SlidingViewAtom {
	z-index: 1000;
	/* position: fixed !important; */
	overflow: overlay;
	overscroll-behavior: none;
}

.ExpandViewAtom {
	overflow: hidden;
}

.Question.Atom,
.Question-Ref.Atom {
	user-select: none;
	cursor: pointer;
}

.edutech-check-result-img {
	position: absolute;
	transition: opacity 2s ease-in-out;
	transition-duration: 1s;
	transform: translate(-35%, -35%);
	width: 50px;
	height: 50px;
	pointer-events: none;
	z-index: 999;
}

.edutech-number-check-img {
	position: absolute;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	pointer-events: none;
}

.EBookQuestionsAtom {
	width: 450px;
	height: 497px;
	display: flex;
	flex-direction: column;
}

.EBookQuestionsAtom>* {
	width: 100%;
}

.EBookQuestionsAtom .eqa-answer,
.EBookQuestionsAtom .eqa-body,
.EBookQuestionsAtom .eqa-questions,
.EBookQuestionsAtom .eqa-title,
.EBookQuestionsAtom .eqa-answer-row,
.EBookQuestionsAtom .eqa-answer-row-num,
.EBookQuestionsAtom .eqa-answer-row-content {
	position: relative;
}

.EBookQuestionsAtom .eqa-questions {
	display: flex;
	flex-direction: row;
}

.EBookQuestionsAtom .eqa-num,
.EBookQuestionsAtom .eqa-questions,
.EBookQuestionsAtom .eqa-answer-row-num {
	height: 100%;
}

.EBookQuestionsAtom .eqa-num * {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.EBookQuestionsAtom .eqa-answer {
	display: flex;
	flex-direction: column;
}

.EBookQuestionsAtom .eqa-content {
	position: absolute;
}

.EBookQuestionsAtom .eqa-answer-row {
	display: flex;
	flex-direction: row;
}

.EBookQuestionsAtom .eqa-answer-row-num {
	width: 30px;
	text-align: center;
	justify-content: center;
	align-items: center;
	display: flex;
	user-select: none;
}

.EBookQuestionsAtom,
.EBookQuestionsAtom .eqa-questions,
.EBookQuestionsAtom .eqa-body,
.EBookQuestionsAtom .eqa-answer {
	overflow: hidden;
}

.eqa_line {
	position: absolute;
}

.eqa_line.Done {
	pointer-events: none;
}

.no-pointer-events {
	pointer-events: none;
}

.eqa-content {
	padding: 5px;
}

#EBookQuestion_hover_rect {
	position: absolute;
	box-sizing: border-box;
	border: 1px dotted #FFA500;
	z-index: 999;
	background-color: transparent;
	pointer-events: none;
}

.SmartAudioAtom {
	background-image: url(/sys/img/SmartAudioAtom.png);
	background-size: 50px 34px;
	background-position: 50%;
	background-repeat: no-repeat;
	border-radius: 5px;
	border: solid rgb(129, 129, 129) 1px;
}

.GridTableExAtom,
.GridTableExAtom td {
	border: 1px solid rgb(217, 217, 217);
	white-space: pre-line;
	border-collapse: collapse;
	border-spacing: 0;
}

.EBookTextAtom span {
	white-space: pre-wrap;
}

.EBookTextAtom p.larger-than-span span {
	/*vertical-align: text-bottom;*/
}

.EBookTextAtom p.smaller-than-span span {
	/*vertical-align: baseline;*/
}

.EBookTextAtom {
	box-sizing: border-box;
}


.EBookTextAtom {
	/*padding-top: 5px;*/
}

/* 빌더상으로 WPF 기본적으로 5px 패딩 들어가있음 */
.EBookTextAtom>div {
	padding-left: 5px;
	padding-right: 5px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	justify-content: center;
	min-height: 100%;
}

.EBookTextAtom>div[text-vertical-align="T"] {
	justify-content: flex-start !important;
}

.EBookTextAtom>div[text-vertical-align="M"] {
	justify-content: center !important;
}

.EBookTextAtom>div[text-vertical-align="B"] {
	justify-content: flex-end !important;
}

.EBookTextAtom:not(.EBookTextAtom_Background) .masking {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.EBookTextAtom_Background:not(.start) {
	background-image: linear-gradient(to right, #FF0000 0%, #000000 0%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.EBookTextAtom_Background span {
	opacity: 0;
}

.text-masking-audio {
	display: none;
}

.EBookTriangleAtom {
	clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.EBookMediaAtom .script-btn,
.WebFlashAtom .script-btn {
	display: none;
}

.EBookMediaAtom video {
	object-fit: cover;
}

.EBookMediaAtom[data-script-exist="true"]:hover .script-btn,
.WebFlashAtom[data-script-exist="true"]:hover .script-btn {
	display: block !important;
}

.EBookMediaAtom[data-script-exist="true"] .script-btn,
.WebFlashAtom[data-script-exist="true"] .script-btn {
	position: absolute;
	z-index: 1;
	cursor: pointer;
	right: 5px;
	top: 5px;
	width: 32px;
	height: 32px;
	background: url("/sys/img/edutech/QuestionMark.png");
	background-size: 100% 100%;
}

.media-script-popup {
	position: absolute !important;
	width: 400px;
	height: 500px;
	border: solid rgb(210, 210, 210) 0.5px;
	background-color: white;
	font-size: 14px;
}

.media-script-popup .media-script-head {
	width: calc(100% - 10px);
	height: 30px;
	background-color: #E0E0E0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px;
}

.media-script-popup .media-script-head .close-btn {
	cursor: pointer;
}

.media-script-popup .media-script-body {
	width: calc(100% - 30px);
	height: calc(100% - 70px);
	padding: 15px;
	background-color: white;
	overflow-x: hidden;
	overflow-y: scroll;
}

.customAspectRatio {
	aspect-ratio: var(--aspect-ratio);
}

.EBookFigure {
	box-sizing: border-box;
}

.EBookFigure>div:not([class]) {
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: var(--vert-align);
	top: 0px;
	left: 0px;
	width: 80%;
	height: 100%;
	padding: 0 10%;
}

.EBookEllipseAtom {
	border-radius: 50%;
}

.EBookSpeechBalloonSquareAtom svg,
.EBookSpeechBalloonSquareAtom svg>*,
.EBookSpeechBalloonRoundedSquareAtom svg,
.EBookSpeechBalloonRoundedSquareAtom svg>*,
.EBookSpeechBalloonEllipseAtom svg,
.EBookSpeechBalloonEllipseAtom svg>*,
.EBookSpeechBalloonCloudAtom svg,
.EBookSpeechBalloonCloudAtom svg>* {
	position: absolute;
	pointer-events: none;
}


.EBookQuizViewAtom .quiz-view-overlay,
.EBookQuizViewAtom .quiz-atom-overlay {
	position: absolute;
	pointer-events: none;
}

.EBookQuizViewAtom .wrapper {
	position: absolute;
	overflow: visible;
	outline: dashed black 0.5px;
	cursor: move;
}

.EBookQuizViewAtom .wrapper>.handle {
	width: 10px !important;
	height: 10px !important;
	background-color: green;
	border-radius: 50%;
	position: absolute;
	top: -20px;
	/* 기존의 'bottom: -20px;'에서 변경 */
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
	/* 드래그가 가능하도록 커서 스타일 추가 */
	z-index: 999;
}

.EBookQuizViewAtom .Atom[data-quiz-type="E1"][data-tool-type="0"] {
	cursor: url(/sys/img/pencil.svg) 0 62, url(/sys/img/pencil.svg) 0 62, auto;
}

.EBookQuizViewAtom .wrapper.A2>.link-dot {
	width: 8px !important;
	height: 8px !important;
	background-color: red;
	border-radius: 50%;
	border: 1px solid black;
	position: absolute;
	cursor: pointer;
	/* 드래그가 가능하도록 커서 스타일 추가 */
	z-index: 999;
	user-select: none;
}

.EBookQuizViewAtom .wrapper.A2>.link-dot[data-direction-type="0"][data-major-type="1"] {
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.EBookQuizViewAtom .wrapper.A2>.link-dot[data-direction-type="0"][data-major-type="2"] {
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.EBookQuizViewAtom .wrapper.A2>.link-dot[data-direction-type="1"][data-major-type="1"] {
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
}

.EBookQuizViewAtom .wrapper.A2>.link-dot[data-direction-type="1"][data-major-type="2"] {
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
}

.EBookQuizViewAtom .wrapper.movebox {
	outline: dashed black 0.5px;
	cursor: move;
}

.EBookQuizViewAtom .wrapper.movebox>.handle {
	width: 10px !important;
	height: 10px !important;
	background-color: green;
	border-radius: 50%;
	position: absolute;
	top: -20px;
	/* 기존의 'bottom: -20px;'에서 변경 */
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
	/* 드래그가 가능하도록 커서 스타일 추가 */
	z-index: 999;
}

.EBookQuizViewAtom .Atom[data-quiz-type="E1"][data-action-type="3"] {
	cursor: url('/sys/img/paint.png'), auto;
}

.EBookQuizViewAtom .Atom[data-quiz-type="E1"][data-action-type="3"][data-is-fill="true"] {
	background-color: var(--paint-color) !important;
}

.EBookGraphPaperAtom>.EBookGraphCanvas,
.EBookGraphPaperAtom>.EBookGraphBackground {
	position: absolute;
}

.sm-form-contextmenu {
	min-width: 150px !important;
}

#ModelArea.sap * {
	font-family: var(--global-font-family);
}

#ModelArea.sap * {
	font-family: var(--global-font-family);
	font-size: var(--font-size) !important;
}

.context-menu-root * {
	font-size: 14px;
}

.reportbrowse-filter-body {
	white-space: nowrap;
	padding-left: 5px !important;
	padding-right: 5px !important;
	width: 280px !important;
}

.report-browse-cm-root {
	min-width: 154px !important;
}

.cm-reportbrowse-layout-name {
	padding-left: 10px !important;
	padding-right: 0px !important;
	width: 160px !important;
}

/* modal */
.smartmaker-modal {
	display: none;
	position: fixed;
	width: 350px;
	height: 180px;
	overflow: hidden;
	left: calc(50% - 175px);
	top: calc(50% - 90px);
	box-sizing: border-box;
	border: 1px solid #cdcdcd;
	background-color: white;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.smartmaker-cover {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: transparent;
}

.smartmaker-modal>.smartmaker-modal-content {
	width: 100%;
	height: 100%;
}

.smartmaker-modal-content>div {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.smartmaker-modal-content>.smartmaker-modal-header {
	width: 100%;
	height: 40px;
	padding: 0 10px;
	align-items: end;
	justify-content: left;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	font-weight: bold;
	font-size: 20px;
}

.smartmaker-modal-content>.smartmaker-modal-body {
	width: 100%;
	height: 90px;
	padding: 10px;
	display: flex;
	justify-content: left;
}

.smartmaker-modal-body>.smartmaker-modal-body-img {
	width: 50px;
	height: 50px;
	display: none;
}

.smartmaker-modal-body>.smartmaker-modal-body-text {
	width: 150px;
	padding: 5px;
}

.smartmaker-modal-body-text {
	font-size: 13px;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	white-space: pre-wrap;
}

.smartmaker-modal-body-text>div {
	font-size: 13px;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	margin: 2px 0;
}

.smartmaker-modal-body-text>p {
	margin: 2px 0 !important;
}

.smartmaker-modal-content>.smartmaker-modal-footer {
	width: 100%;
	height: 50px;
	justify-content: right;
	padding: 0 10px;
}

.smartmaker-modal-footer>.smartmaker-modal-confirm,
.smartmaker-modal-reject {
	width: 70px;
	height: 30px;
	box-sizing: border-box;
	border: 1px solid #cdcdcd;
	border-radius: 15px;
	font-size: 15px;
	font-weight: bold;
	color: white;
	text-align: center;
	background-color: #4285F4;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
}

.smartmaker-modal-footer>.smartmaker-modal-confirm:hover,
.smartmaker-modal-reject:hover {
	cursor: pointer;
	background-color: #cdcdcd;
	color: black;
}