@charset "UTF-8";

/*
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #bcd0ee;
	border-radius: 10px;
	background-clip: padding-box;
}

::-webkit-scrollbar-track {
	background-color: #fff;
	border-radius: 10px;
}
*/

#main-contents {
	height: auto;
}

#chart-area {
	font-size: 18px;
}

/* ------- 레드 ------- */
.red-wrapper {
	width: 1200px;
	margin: 0 auto;
	/*-- margin-bottom: 200px; */
	padding: 50px 0;
	/*-- padding: 30px 0 50px 0; */
}

.red-wrapper .chart-wrapper {
	display: flex;
	justify-content: space-between;
	/* height: 967px; */
}

.red-button-group {
	display: flex;
	margin: 45px auto;
	justify-content: center;
}

.red-button-group button {
	display: flex;
	align-items: center;
	justify-content: space-around;
	font-size: 16px;
	font-weight: 400;
	margin: 0 4px;
	padding: 15px 20px;
	color: #fff;
	background-color: #2e70dc;
	border-radius: 2rem;
	border: 0;
	width: 200px;
}

.red-button-group button:hover {
	background-color: #063f95;
}

.red-button-group button.outline {
	color: #2e70dc;
	background-color: transparent;
	border: 1px solid #2e70dc;
}

.red-button-group button.outline:hover {
	color: #063f95;
	border: 1px solid #063f95;
}

.red-button-group button.darkblue {
	color: #fff;
	background-color: #0e4194;
}

.red-button-group button.outline-darkblue {
	color: #0e4194;
	background-color: transparent;
	border: 1px solid #0e4194;
}

/* .red-button-group .white {
	color: #206ae2;
	background-color: #fff;
	border: 1px solid #206ae2;
} */

.red-button-group button.outline-red {
	color: #d9001b;
	background-color: transparent;
	border: 1px solid #d9001b;
}

.red-button-group button.outline-red:hover {
	color: #b30016;
	border: 1px solid #b30016;
}

.red-button-group.grid {
	margin: 20px auto;
	justify-content: space-between;
}

.red-button-group.grid div {
	display: flex;
}

.red-button-group.grid button {
	padding: 6px 5px 5px 5px;
	width: 130px;
	border-radius: .4em;
}

.red-button-group.grid .tooltip-data {
	width: fit-content;
	/* position: absolute; */
	position: relative;
	background: #1399D4;
	border-radius: .4em;
	padding: 10px;
	color: #fff;
	max-width: 200px;
	font-size: 12px;
	z-index: 10;
	/* top: -54px; */
	/* left: 50%; */
	top: 6px;
}

.red-button-group.grid .tooltip-data::after {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 10px 10px 0;
	border-color: #1399D4 transparent transparent transparent;
	display: block;
	width: 0;
	z-index: 10;
	left: 50%;
	bottom: -7px;
	transform: translateX(-50%);
}

.red-button-group.grid .tooltip-data .tooltip-close {
	position: absolute;
	top: -7px;
	right: -7px;
}

/* ------- 데이터 정보(데이터명, 등록자, 갱신일, 조회수, 좋아요) ------- */
.red-chart-container {
	/* width: 100%; */
	width: 930px;
	/* height: 805px; */
	/* position: relative; */
}

.red-chart-container h2 {
	border-top: 2px solid #000;
	border-bottom: 1px solid #000;
	font-size: 20px;
	font-weight: bold;
	padding: 20px;
	text-align: center;
}

.red-chart-container .date {
	padding: 20px 0px;
	border-bottom: 1px solid #d9d9d9;
	position: relative;
}

.red-chart-container .date ul {
	display: flex;
}

.red-chart-container .date ul li {
	padding: 0px 20px;
	border-right: 1px solid #cacaca;
	font-size: 16px;
	color: #4e4e4e;
}

.red-chart-container .date ul li:last-child {
	border: 0px;
}

.red-chart-container .date ul li button {
	font-size: 16px;
	background-color: transparent;
	color: #4e4e4e;
}

.red-chart-container .date ul li span {
	color: #ec3852;
	margin-left: 8px;
}

.red-chart-container .date ul li span:first-child {
	color: #4e4e4e;
}

/* ------- 데이터 카테고리 ------- */
.red-chart-container .category {
	display: flex;
	padding: 10px 10px 13px 10px;
	border-bottom: 1px solid #d9d9d9;
	justify-content: space-between;
}

.red-chart-container .category button {
	min-width: 120px;
	padding: 10px 20px;
	border-radius: 20px;
}

/* .red-chart-container .category .language_on {
	background: #0e4194;
	color: #fff;
}

.red-chart-container .category .language_off {
	background: #fff;
	border: 1px solid #0e4194;
	color: #0e4194;
} */
.red-chart-container .category .language {
	height: 37px;
	border: 1px solid #0e4194;
	color: #0e4194;
	background: #fff;
	font-size: 14px;
	margin-top: 3px;
}

.red-chart-container .category .language.on {
	cursor: default;
	color: #fff;
	background: #0e4194;
}

.red-chart-container .category ul {
	display: flex;
	flex-flow: row wrap;
}

.red-chart-container .category ul li {
	height: 35px;
	margin-right: 5px;
	border-radius: 25px;
	border: 1px solid #cdcdcd;
	margin-top: 3px;
}

.red-chart-container .category ul li .global {
	color: #000;
	align-items: center;
	height: 100%;
	padding: 0px 15px;
	display: flex;
}

.red-chart-container .category ul li .global img {
	border: 1px solid #d1d1d1;
	vertical-align: middle;
	margin-right: 5px;
}

.red-chart-container .category ul li .marker-icon {
	width: 14px;
	height: 21px;
	margin-right: 5px;
}

.red-chart-container .category ul li .category-icon {
	margin-right: 5px;
}

.red-chart-container .category ul li .category-icon img {
	width: 20px;
	margin-top: 5px;
}

.red-chart-container .category ul li span {
	font-size: 14px;
	color: #4e4e4e;
	/* margin-left: 5px; */
	word-break: keep-all;
	white-space: nowrap;
}

.red-chart-container .category ul li a {
	text-decoration: none;
	color: #000;
	align-items: center;
	height: 100%;
	padding: 0px 15px;
	display: flex;
}

/* ------- 차트 영역 ------- */
.red-chart-container .chart {
	width: 100%;
	/*-- height: 661px; */
	position: relative;
	/* padding-top: 50px; */
	padding-top: 20px;
}

.red-chart-container .in-area {
	width: 100%;
	height: 532px;
}

.red-chart-container .chart .grid {
	overflow: auto;
	height: 532px;
}

.red-chart-container .chart .grid table {
	width: 100%;
	font-size: 15px;
	color: #4E5968;
	border-spacing: 0;
}

.red-chart-container .chart .grid table th {
	position: sticky;
	top: 0;
	min-width: 100px;
	padding: 10px;
	border: 1px solid #D9DCE0;
	border-right: 0px;
	background-color: #F2FBFF;
	text-align: center;
}

.red-chart-container .chart .grid table th:last-child {
	border-right: 1px solid #D9DCE0;
}

.red-chart-container .chart .grid table td {
	padding: 10px;
	border: 1px solid #D9DCE0;
	border-top: 0px;
	border-right: 0px;
	background-color: #fff;
	text-align: center;
	vertical-align: middle;
}

.red-chart-container .chart .grid table td:last-child {
	border-right: 1px solid #D9DCE0;
}

/* ------- 사이드 데이터 리스트 ------- */
.side-list-wrapper .ptg-button__darkblue {
	width: 250px;
	margin-left: 20px;
	margin-bottom: 35px;
}

.side-list {
	width: 250px;
	height: 100%;
	position: relative;
	margin-left: 20px;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	box-sizing: border-box;
}

.side-list .btn_search {
	width: 30px;
	background-color: #0e4194;
	outline: none;
	cursor: pointer;
	margin-top: 12px;
	padding: 7px 28px 5px 10px;
	border-radius: 20px;
}

.side-list .top {
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
	border-bottom: 1px solid #d9d9d9;
}

.side-list .top_arrow {
	background: url(../../images/red/up-button.png) 50% no-repeat;
	background-color: #fff;
	width: 100%;
	height: 40px;
	cursor: pointer;
	border: none;
	border-top: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
	outline: none;
}

.side-list .bottom_arrow {
	background: url(../../images/red/down-button.png) 50% no-repeat;
	background-color: #fff;
	width: 100%;
	height: 40px;
	cursor: pointer;
	border: none;
	border-top: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
	outline: none;
}

.side-list .select_box {
	display: flex;
}

.side-list .select_box select {
	width: 100%;
	height: 40px;
	/* font-family: "Noto Sans KR"; */
	font-size: 13px;
	color: #4e4e4e;
	outline: none;
	cursor: pointer;
	border-radius: 0.3rem;
	border: 1px solid #ccc;
	padding: 0px 10px;
	box-sizing: border-box;
	appearance: none;
	background-image: url(../../images/red/ico_arrow_down.svg);
	background-repeat: no-repeat;
	/* background-position: 90% 50%; */
	background-position: right 6px center;
}

.side-list .select_box .box01 {
	width: 115px;
	margin: 10px 5px 0 0;
}

.side-list .select_box .box02 {
	width: 100px;
	margin-top: 10px;
}

.side-list .search_box {
	display: flex;
}

.side-list .input_search {
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	margin: 10px 5px 0px 0px;
	border: 1px solid #ccc;
	border-radius: 0.25rem;
	font-size: 13px;
	color: #2b2b2b;
	box-sizing: border-box;
}

.side-list input[type="text"]::placeholder {
	color: #c9c9c9;
}

.side-list .list {
	height: 749px;
	overflow-x: hidden;
	overflow-y: scroll;
}

.side-list .list::-webkit-scrollbar {
	width: 5px;
}

.side-list .list::-webkit-scrollbar-thumb {
	background-color: #bcd0ee;
    outline: none;
    border-radius: 10px;
    border: 0px solid transparent;
    box-shadow: inset 0px 0px 0 #0000003b;
}

.side-list .list::-webkit-scrollbar-track {
	background-color: #fff;
	border-radius: 10px;
}

.side-list .list button {
	display: inline-block;
	height: 28px;
	line-height: 27px;
	font-size: 15px;
	text-align: center;
	color: #ffffff;
	border-radius: 25px;
	padding: 1px 14px 0px 14px;
	cursor: pointer;
	position: absolute;
	right: 10px;
}

.side-list .list .btn_blue {
	display: inline-block;
	height: 28px;
	line-height: 27px;
	font-size: 15px;
	text-align: center;
	color: #ffffff;
	border-radius: 25px;
	background-color: #0e4194;
	cursor: pointer;
	position: absolute;
	/*-- margin-top: 10px; */
	right: 10px;
}

.side-list .list .similar {
	display: inline-block;
	height: 28px;
	line-height: 30px;
	font-size: 15px;
	text-align: center;
	color: #ffffff;
	border-radius: 25px;
	background-color: #1fb838;
	position: absolute;
	margin-top: 48px;
	right: 10px;
	padding: 0px 14px;
}

.side-list .list ul {
	position: relative;
	/*-- margin-top: 10px; */
	height: 100%;
	padding: 0px;
}

.side-list .list ul li {
	/*-- height: 160px; */
	border-bottom: 1px solid #e7e7e7;
	overflow: hidden;
	box-sizing: border-box;
	text-align: center;
	padding: 10px 0 15px 0;
}

.side-list .list ul li:last-child {
	border: 0px;
}

.side-list .list ul li img {
	width: 65%;
	cursor: move;
}

.side-list .list ul li span {
	display: inline-block;
	width: 100%;
	height: 25%;
	font-size: 15px;
	font-weight: 600;
	color: #333333;
	text-align: center;
	cursor: pointer;
	padding: 0px 10px;
	box-sizing: border-box;
}

.side-list .list .loading {
	display: flex;
	width: 100%;
	height: 100%;
	/* background-color: rgba(0, 0, 0, 0.02); */
}

.side-list .list .loading img {
	display: flex;
	margin: auto;
	width: auto;
}

.side-list .list .loading span {
	margin: auto;
	height: auto;
}

.side-list .btns {
	width: 100%;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #d9d9d9;
	height: 46px;
	position: absolute;
	bottom: 0;
	box-sizing: border-box;
}

.side-list .btns button {
	background: #fff;
	color: #4e4e4e;
	width: 125px;
}

.side-list .btns .prev {
	border-radius: 0px 0px 0px 10px;
	border-right: 1px solid #d9d9d9;
	background: url("../../images/red/ico_list_prev.svg") no-repeat 58px 15px;
	background-color: #fff;
}

.side-list .btns .next {
	border-radius: 0px 0px 10px 0px;
	background: url("../../images/red/ico_list_next.svg") no-repeat 59px 15px;
	background-color: #fff;
}

/* ------- 가운데 메뉴(차원변경, 계층변경등) ------- */
.red-menu {
	display: flex;
	margin-top: 30px;
	align-items: end;
	justify-content: space-between;
}

.red-menu .red-menu-wrap {
	display: flex;
}

.red-menu .prev {
	width: 45px;
	height: 45px;
	cursor: pointer;
	border: 1px solid #cbcbcb;
	border-radius: 50%;
	background: url("../../images/red/ico_prev.svg") no-repeat 16px 11px;
	margin-right: 5px;
}

.red-menu .prev:hover {
	border: 1px solid #2e70dc;
}

.red-menu .next {
	width: 45px;
	height: 45px;
	cursor: pointer;
	border: 1px solid #cbcbcb;
	border-radius: 50%;
	background: url("../../images/red/ico_next.svg") no-repeat 19px 11px;
	margin-right: 5px;
}

.red-menu .next:hover {
	border: 1px solid #2e70dc;
}

.red-menu .origin {
	width: 45px;
	height: 45px;
	cursor: pointer;
	border: 1px solid #cbcbcb;
	border-radius: 50%;
	background: url("../../images/red/ico_origin.svg") no-repeat center;
	margin-right: 5px;
}

.red-menu .origin:hover {
	border: 1px solid #2e70dc;
}

.red-menu .history {
	position: relative;
	width: 150px;
	height: 45px;
	font-size: 13px;
	color: #4e4e4e;
	outline: none;
	cursor: pointer;
	border: 1px solid #bbbbbb;
	border-radius: 4px;
	padding: 0px 10px;
	box-sizing: border-box;
	background: url("../../images/red/ico_arrow_down.svg") no-repeat 90% 50%;
	appearance:none;
	/* top: 6px; */
}

.red-menu .hierarchy {
	color: #fff;
	background: #2e70dc;
	font-size: 12px;
	width: 120px;
	height: 45px;
	border-radius: 25px;
	padding: 1px 20px 0px 50px;
	background-image: url("../../images/red/ico_hierarchy.svg");
	background-repeat: no-repeat;
	background-position: 22px 13px;
	outline: none;
	border: 0px;
	cursor: pointer;
	margin-right: 5px;
}

.red-menu .hierarchy:hover {
	background: #063f95;
	background-image: url("../../images/red/ico_hierarchy.svg");
	background-repeat: no-repeat;
	background-position: 22px 13px;
}

.red-menu .dimention {
	color: #fff;
	background: #2e70dc;
	font-size: 12px;
	width: 120px;
	height: 45px;
	border-radius: 25px;
	padding: 1px 20px 0px 50px;
	background-image: url("../../images/red/ico_dimension.svg");
	background-repeat: no-repeat;
	background-position: 22px 13px;
	outline: none;
	border: 0px;
	cursor: pointer;
	margin-right: 5px;
}

.red-menu .dimention:hover {
	background: #063f95;
	background-image: url("../../images/red/ico_dimension.svg");
	background-repeat: no-repeat;
	background-position: 22px 13px;
}

.red-menu .function {
	width: 80px;
	height: 45px;
	color: #2e70dc;
	outline: none;
	cursor: pointer;
	border-radius: 25px;
	background-color: #FFFFFF;
	border: 1px solid #2e70dc;
}

.red-menu .function:hover {
	color: #063f95;
	border-color: #063f95;
}

.red-menu .regend {
	width: 200px;
	height: 43px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #2e70dc;
	border-radius: 24px;
}

.red-menu .regend .btns {
	flex: 1;
	color: #206ae2;
	/* padding: 12px 14px 15px 14px; */
	background-color: transparent;
	border: 0;
	border-left: 1px solid #e2e2e2;
	height: 100%;
}

.red-menu .regend .btns:first-child {
	border-left: 0;
}

.red-menu .regend img {
	/* vertical-align: middle; */
}

.red-menu .change {
	position: relative;
}

/* ------- 그래프 종류 ------- */
.red-graph-option {
	/*-- width: 100%; */
	width: 928px;
	align-items: center;
	padding: 10px 0px;
	margin-top: 25px;
	border: 1px solid #d3d3d3;
	border-radius: 35px;
	overflow: hidden;
	display: flex;
}

.swiper-button-prev-m {
	background: url("../../images/red/ico_prev_m.svg") 50% 50% no-repeat;
	position: absolute;
	width: 60px;
	height: 45px;
	cursor: pointer;
	outline: none;
	border: none;
	z-index: 100;
	background-color: transparent;
	border-radius: 20px;
}

.swiper-button-next-m {
	background: url("../../images/red/ico_next_m.svg") 50% 50% no-repeat;
	position: absolute;
	right: 0;
	width: 60px;
	height: 45px;
	cursor: pointer;
	outline: none;
	border: none;
	z-index: 100;
	background-color: transparent;
	border-radius: 20px;
}

.swiper {
	width: 100%;
	display: flex;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	margin: 0 auto;
	overflow: hidden;
	background: #fff0;
}

.swiper-slide ul {
	/* width: 90%; */
	display: flex;
	align-items: center;
	padding: 0px;
}

.swiper-slide ul li {
	width: 40px;
	height: 45px;
	line-height: 45px;
	margin-left: 12px;
	/* box-shadow: inset 0px 0px 0px 2px #4288ea; */
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	box-sizing: border-box;
	display: list-item !important;
}

.swiper-slide ul .on {
	box-shadow: inset 0px 0px 0px 2px #2e70dc;
}

.swiper-slide ul .on:hover {
	box-shadow: inset 0px 0px 0px 2px #4288ea;
}

.swiper-slide ul li:hover {
	box-shadow: inset 0px 0px 0px 2px #abc3e4;
}

.swiper-slide ul li img {
	border-style: none;
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}

@media ( max-width : 760px) {
	.swiper-button-next {
		right: 20px;
		transform: rotate(90deg);
	}
	.swiper-button-prev {
		left: 20px;
		transform: rotate(90deg);
	}
}

.swiper-button-next-m.swiper-button-disabled, .swiper-button-prev-m.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-next-m.swiper-button-hidden, .swiper-button-prev-m.swiper-button-hidden {
	opacity: 0;
	cursor: auto;
	pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next-m, .swiper-navigation-disabled .swiper-button-prev-m {
	display: none !important
}

/* ------- Tooltip text ------- */
.tooltip_help {
	position: relative;
	display: inline-block;
	overflow: visible !important;
}

.tooltip_help .tooltiptext {
	visibility: hidden;
	position: absolute;
	width: 150px;
	font-size: 12px;
	background-color: #063f95;
	color: #fff;
	text-align: center;
	padding: 8px;
	border-radius: 6px;
	z-index: 1;
	opacity: 0;
	transition: opacity .6s;
}

.tooltip_help:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.tooltip_help .tooltiptext2 {
	visibility: hidden;
	position: absolute;
	width: 120px;
	background-color: #2e70dc;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
	z-index: 1;
}

.tooltip_help:hover .tooltiptext2 {
	visibility: visible;
}

.tooltip-top {
	bottom: 125%;
	left: 10%;
	margin-left: -60px;
}

.tooltip-top2 {
	bottom: 115%;
	left: 3%;
	margin-left: -60px;
}

.tooltip-top::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #063f95 transparent transparent transparent;
}

/* ------- 집계 함수 ------- */
.function_select {
	width: 80px;
	height: 45px;
	border: 1px solid #2e70dc;
	border-radius: 30px;
	color: #2e70dc;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-align: center;
	outline: none;
	background-image: none;
}

/* -------  M차원 계층 변경 ------- */
#ui-mLayerSelector {
	display: none;
	position: absolute;
	text-align: center;
	min-width: 70px;
	background-color: #FFF;
	border-radius: 6px;
	border: 1px solid #b1b1b1;
	padding: 6px;
	margin-top: 6px;
	z-index: 100;
	margin-left: 132px;
	width: 100px;
}

#ui-mLayerSelector ul {
	display: block;
}

#ui-mLayerSelector li {
	float: none;
	text-align: left;
	width: 100%;
	margin-bottom: 5px;
}

#ui-mLayerSelector li label {
	font-size: 13px;
}

#ui-mLayerSelector li input[type=checkbox] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	background-color: #ffffff;
	border: 1px solid #b1b1b1;
	border-radius: 2px;
	vertical-align: text-bottom;
	margin-right: 5px;
}

#ui-mLayerSelector li input[type=checkbox]:checked {
	background: #2e70dc!important;
	border-radius: 2px;
	border: 0px;
}

#ui-mLayerSelector li input[type=checkbox]:checked::before {
	content: "";
	position: absolute;
	background: none !important;
	left: 6px;
	top: 3px;
	width: 4px;
	height: 8px;
	border: 10px solid #ffffff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#ui-mLayerSelector li input[type=checkbox]:disabled {
	background: #eaeaea;
}

#ui-mLayerSelector button {
	width: 100%;
}

#ui-mLayerSelector .btn_blue {
	background-color: #2e70dc;
	color: #fff;
	padding: 4px 5px;
	border-radius: 2px;
	font-size: 12px;
}

#ui-mLayerSelector .btn_blue:hover {
	background-color: #063f95;
}

/* ------- 데이터 상세 정보 ------- */
.red-data-info {
	font-size: 16px;
}

.red-data-info table {
	border-spacing: 0px;
	width: 100%;
	border-top: 2px solid #6c6c6c;
}

.red-data-info th {
	padding: 20px;
	background: #fcfcfc;
	border-bottom: 1px solid #d1d1d1;
}

.red-data-info td {
	padding: 15px;
	border-bottom: 1px solid #d1d1d1;
	color: #828282;
}

.red-data-info .hashtag ul {
	display: flex;
	flex-flow: row wrap;
}

.red-data-info .hashtag ul li {
	height: 35px;
	margin-right: 10px;
	border-radius: 25px;
	border: 1px solid #cdcdcd;
}

.red-data-info .hashtag ul li a {
	text-decoration: none;
	color: #000;
	align-items: center;
	height: 100%;
	padding: 0px 15px;
	display: flex;
}

.red-data-info .hashtag ul li span {
	font-size: 14px;
	color: #4e4e4e;
	word-break: keep-all;
}

/* ------- 수치검색 -------*/
.figure-search {
	display: flex;
	padding: 20px;
	/*-- margin: 60px 0px 200px 0px; */
	margin: 60px 0px;
	border-radius: 10px;
	border: 1px solid #d9d9d9;
	background: #fcfcfc;
	box-sizing: border-box;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.figure-search span {
	margin-left: 10px;
}

.figure-search button {
	background-color: #0e4194;
	padding: 10px 50px 10px 50px;
	margin-left: 10px;
	border-radius: 30px;
	font-size: 19px;
	color: #fff;
}
.figure-search button:hover {
	background-color: #063f95;
}

.figure-search .loading {
	display: flex;
	width: 52px;
	height: 52px;
	margin: 0;
}

.figure-search .loading img {
	/* margin: auto; */
}

.figure-search-result {
	width: 100%;
	min-height: 200px;
	border-radius: 10px;
	border: 1px solid #d9d9d9;
	/*-- margin-top: 20px;
	margin-bottom: 200px; */
	margin: 60px 0px;
	padding: 20px;
	box-sizing: border-box;
}

.figure-search-result .top {
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 40px;
	background-color: #2e70dc;
	padding: 5px 20px 5px 20px;
	border-radius: 5px;
	font-size: 20px;
	color: #fff;
}

.figure-search-result .top b {
	margin: 0px 5px 0px 20px;
}

.figure-search-result .top button {
	width: auto;
	height: 40px;
	padding: 5px 15px;
	background: #fff;
	color: #2e70dc;
	cursor: pointer;
	outline: none;
	border-radius: 20px;
	font-size: 18px;
	align-items: center;
	line-height: normal;
}

.figure-search-result ul {
	
}

.figure-search-result ul li {
	position: relative;
	width: 100%;
	padding: 20px 0px 20px 20px;
	border-bottom: 1px solid #d9d9d9;
	box-sizing: border-box;
}

.figure-search-result ul li:last-child {
	border: 0px;
}

.figure-search-result ul li .relation {
	width: 200px;
	position: absolute;
	right: 0px;
	top: 40px;
	bottom: -20px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #0e4194;
	display: block;
}

.figure-search-result ul li h1 {
	font-size: 19px;
	font-weight: normal;
	cursor: pointer;
	margin-bottom: 10px;
}

.figure-search-result ul li div {
	display: flex;
}

.figure-search-result ul li div span {
	width: 30%;
	margin-bottom: 10px;
}

.figure-search-result nav {
	margin: 40px 0px 20px 0px;
}

.figure-search-result nav ul {
	width: 100%;
	display: flex;
	justify-content: center;
}

.figure-search-result nav ul li {
	width: 34px;
	margin: 0px 3px;
	padding: 7px 0px 4px 0px;
	text-align: center;
	cursor: pointer;
	border: 1px solid #e3e3e3;
	border-radius: 50%;
	box-sizing: border-box;
}

.figure-search-result nav ul li:last-child {
	border: 1px solid #e3e3e3;
}

.figure-search-result nav ul li img {
	width: 12px;
	height: 12px;
}

.figure-search-result nav ul .on {
	background-color: #2e70dc;
	color: #fff;
	border: 0px;
}

/* 색약 모드 */
.color_weakness {
	position: absolute;
	top: 15px;
	right: 0px;
	height: 30px;
	cursor: pointer;
}

.color_weakness button {
	border-radius: 20px;
	padding: 5px 18px 3px 37px;
	text-align: center;
	font-size: 13px;
	background: #fff;
	background-position: 18px 8px;
}

.color_weakness .on {
	color: #3170E7;
	border: 1px solid #3170E7;
	background-image: url("../../images/red/color_weakness_on.svg");
	background-repeat: no-repeat;
}

.color_weakness .off {
	border: 1px solid #d1d1d1;
	border-radius: 20px;
	background-image: url("../../images/red/color_weakness_off.svg");
	background-repeat: no-repeat;
}

/* SNS link(퍼가기) */
.sns_link {
	float: right;
	position: absolute;
	right: 0;
	padding: 0px !important;
	top: 18px;
}

.sns_link img {
	margin-right: 10px;
}

/* 그래프 등록 */
.data-regist {
	/* width: 1200px;
	margin: 0 auto;
	margin-bottom: 30px; */
}

.data-regist .essential {
	color: #d82b74;
	margin-right: 5px;
	position: relative;
	top: 3px;
}

.data-regist h1 {
	font-size: 32px;
	text-align: center;
}

.data-regist .top_info {
	text-align: right;
	font-size: 13px;
}

.data-regist table.noborder {
	width: 100%;
	margin-top: 10px;
	border-top: 2px solid #6d6c6c;
}

.data-regist table.noborder .auto {
	margin-top: 10px;
	font-size: 12px;
}

.data-regist table.noborder tr {
	border-bottom: 1px solid #d9d9d9;
}

.data-regist table.noborder th {
	width: 15%;
	font-size: 16px;
	padding: 13px 20px;
	background-color: #f9f9f9;
	color: #333333;
}

.data-regist table.noborder td {
	width: 25%;
	padding: 13px 20px;
	font-size: 16px;
	color: #6d6c6c;
	word-break: break-all;
}

.data-regist input[type=checkbox] {
	width: 20px;
	height: 20px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	background-color: #ffffff;
	border: 1px solid #b1b1b1;
	/* vertical-align: middle; */
	vertical-align: text-bottom;
}

.data-regist input[type=checkbox]:checked {
	background: #1399d4;
	border: 0px;
}

.data-regist input[type=checkbox]:checked::before {
	content: "";
	position: absolute;
	background: none !important;
	left: 7px;
	top: 3px;
	width: 4px;
	height: 8px;
	border: 10px solid #ffffff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.data-regist input[type=checkbox]:disabled {
	background: #eaeaea;
}

.data-regist input[type=text] {
	width: 100%;
	height: 40px;
	font-size: 13px;
	border: 1px solid #d1d1d1;
	padding: 0 10px;
	border-radius: 0.25rem;
	color: #2b2b2b;
	box-sizing: border-box;
}

.data-regist .tb_select {
	width: 100%;
	height: 40px;
	font-size: 13px;
	color: #6d6c6c;
	padding: 0 10px;
	border: 1px solid #ccc;
	border-radius: 0.25rem;
	background-image: url(../../images/red/ico_arrow_down.svg);
	background-position: right 16px center;
	background-repeat: no-repeat;
	box-sizing: border-box;
	appearance: none;
}

.data-regist select::-ms-expand {
	display: none;
}

.data-regist label {
	color: #2b2b2b;
	font-weight: bold;
	cursor: pointer;
}

.data-regist ul {
	display: flex;
	justify-content: center;
}

.data-regist li {
	width: 50%;
	margin-right: 10px;
}

.data-regist li:last-child {
	margin-right: 0px;
}

.data-regist ul.hashtag li {
	width: 20%;
}

.data-regist ul.tdim li, .data-regist ul.ldim li {
	width: 13%;
}

.data-regist ul.mdim li, .data-regist ul.value li {
	width: 18%;
}

.data-regist ul.mdim input[type=text] {
	width: 80%;
}

.data-regist ul.value input[type=text] {
	width: 80%;
	margin-left: 28px;
}

.data-regist .save-as p {
	margin: 0;
	font-size: 18px;
}

.data-regist .save-as p img {
	margin-right: 10px;
}

.data-regist .save-as span {
	display: block;
	margin-top: 5px;
}

.data-regist .save-as label {
	font-weight: normal;
}

.data-regist .grid-wrapper {
	/* margin-top: -1px; */
	width: 100%;
	/* margin-top: 45px;
	border-collapse: collapse;
	overflow-y: scroll; */
	/* border-top: 2px solid #6d6c6c; */
}

/* .data-regist .grid-wrapper table {
	margin-top: 0px;
	border: 0px;
}

.data-regist .grid-wrapper tbody tr:nth-child(2n) {
	background-color: #f9f9f9;
}

.data-regist .grid-wrapper tbody tr:nth-child(2n+1) {
	background-color: #fff;
}

.data-regist .grid-wrapper tbody {
	overflow: auto;
}

.data-regist .grid-wrapper th {
	width: auto;
	position: sticky;
	top: 0px;
}

.data-regist .grid-wrapper td {
	width: auto;
} */

/* .data-regist .btn_group {
	margin-top: 45px;
	text-align: center;
	display: flex;
	justify-content: center;
}

.data-regist .btn_group button {
	display: flex;
	align-items: center;
	justify-content: space-around;
	font-size: 16px;
	font-weight: 400;
	margin: 0 4px;
	padding: 15px 20px;
	border-radius: 2rem;
	border: 0;
	width: 200px;
}

.data-regist .btn_group .cancel {
	background: #fff;
	border: 1px solid #0e4194;
	color: #0e4194;
}

.data-regist .btn_group .regist {
	background: #0e4194;
	color: #fff;
} */

.data-regist .red-graph-option {
	width: 100%;
}

.data-regist .chart {
	position: relative;
	padding-top: 50px;
}

.data-regist .editor {
	font-size: 14px;
}

.exts_history .history {
	position: relative;
	width: 100%;
	height: 45px;
	font-size: 16px;
	color: #4e4e4e;
	outline: none;
	cursor: pointer;
	border: 0;
	border-radius: 4px;
	/* padding: 0px 20px; */
	box-sizing: border-box;
	background: url("../../images/red/ico_arrow_down.svg") no-repeat right 20px center;
	text-align: center;
	appearance: none;
}

/*-- 번역 페이지 ==> admin.css 로 이관 */
/*-- .btn_blue.off {
	background-color: white;
	color: #1399D4;
	border: 0.1px solid #1399D4;
}

.divBar {
	border: 0.5px solid;
}

.hide {
	display: none;
	float: none !important;
	margin-left: 5px;
}

.flex {
	display: flex;
	align-items: center;
} */

/* 팝업 - 데이터 현황 */
.dimmed {
	background: #000;
	opacity: 75%;
	width: 100%;
	height: 100%;
	z-index: 100;
	top: 0;
	left: 0;
	position: fixed;
}

.red-pop {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 820px;
	height: auto;
	background: #fff;
	border-radius: 10px;
	z-index: 200;
	padding: 40px;
	text-align: center;
}

.red-pop .close {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 50;
	cursor: pointer;
}

.red-pop .table-container {
	min-width: 820px;
	max-width: 1600px;
	height: 450px;
	overflow-x: auto;
	overflow-y: auto;
	border: 1px solid #d9d9d9;
	/*-- border-top: 0px; */
}

.red-pop h1 {
	font-size: 25px;
	font-weight: bold;
	color: #000;
	text-align: left;
	margin: 0px 0px 30px 0px;
}

.red-pop h2 {
	font-size: 14px;
	color: #7f7f7f;
	font-weight: 500;
	text-align: left;
	margin-bottom: 20px;
}

.red-pop table {
	width: 100%;
	border-spacing: 0;
	border: 0px;
	padding: 0px;
	/*-- overflow: scroll; */
}

.red-pop table thead th {
	position: sticky;
	top: 0;
}

/* .red-pop table thead tr th:last-child {
	border-right: 0;
} */

.red-pop table th {
	/*-- border: 1px solid #d9d9d9; */
	/*-- border-right: 0px; */
	border-right: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	background: #f1f1f1;
	padding: 10px 15px;
	font-size: 14px;
	min-width: 60px;
	/* white-space: nowrap; */
}

/*-- .red-pop table th:first-child {
	border-left: 0px;
} */

.red-pop table td {
	/*-- border-left: 1px solid #d9d9d9; */
	border-right: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	padding: 10px 15px;
	font-size: 14px;
	color: #7f7f7f;
	white-space: nowrap;
}

/*-- .red-pop table td:first-child {
	border-left: 0px;
} */

/*-- .red-pop table tr:last-child td {
	border-bottom: 0px;
} */

.red-pop table tr:nth-child(even) {
	background-color: #fbfbfb;
}

/* .red-pop table tbody tr td:last-child {
	border-right: 0;
} */

.red-pop .btn-group {
	text-align: center;
	margin: 30px 0px 15px 0px;
}

.red-pop .btn-group .btn-close {
	width: 100px;
	border: 1px solid #2e70dc;
	border-radius: 30px;
	padding: 10px 20px;
	background: #fff;
	color: #2e70dc;
	font-size: 14px;
	cursor: pointer;
}

.red-pop .btn-group .btn-down {
	width: 100px;
	border: 0px;
	border-radius: 30px;
	padding: 10px 20px;
	margin-right: 10px;
	background: #2e70dc;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}

.red-pop .txt-right {
	text-align: right;
}

/* 동영상 광고 */
.red-pop .ad-count {
	width: 120px;
	padding: 10px;
	background: #0000008a;
	position: absolute;
	right: 40px;
	bottom: 220px;
	text-align: center;
	color: #fff;
	border: 1px solid #454545;
	font-size: 14px;
	z-index: 100;
}

.red-pop .ad-box {
	height: 461px;
	margin-bottom: 25px;
	display: block;
	overflow: hidden;
}

.red-pop .ad-box iframe {
	position: relative;
	top: -1px;
}

.red-pop .txt-center {
	text-align: center;
}

.height-auto {
	height: auto;
}

/*-- 하이차트 메뉴 아이콘 */
/*-- .menu-group {
	display: inline-block; Changed from 'none' to 'inline-block'
	position: absolute;
	right: 0;
	z-index: 10;
}

.menu-group img {
	cursor: pointer;
}

.menu-group .menu-btn {
	margin: 16px 16px 0px 0px;
}

.menu-group .menu-items {
	display: none;
	position: absolute;
	left: -375px;
	top: 0;
	background-color: #fff;
	padding: 10px 35px;
	border: 1px solid #d8d8d8;
	border-radius: 30px;
	z-index: 1;
	box-shadow: 0px 0px 4px #00000025;
}

.menu-group .menu-items.active {
	display: block;
}

.menu-group .menu-item {
	display: inline-block;
	width: 22px;
	margin-right: 25px;
}

.menu-group .menu-item:last-child {
	margin-right: 0px;
}

.menu-group .menu-item img {
	width: 100%;
	height: auto;
	opacity: 60%;
}

.menu-group .menu-item img:hover {
	opacity: 100%;
}

.menu-group-m {
	display: none;
	position: absolute;
	right: 0;
	z-index: 10;
}

.menu-group-m .menu-btn {
	margin: 16px 16px 0px 0px;
}

.menu-group-m .menu-items-m {
	display: none;
	position: absolute;
	right: 0;
	top: 50px;
	background-color: #fff;
	padding: 10px;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
	z-index: 1;
	box-shadow: 0px 0px 4px #00000025;
}

@media screen and (max-width: 800px) {
	.menu-group {
		display: none;
	}
	.menu-group-m {
		display: inline-block;
		cursor: pointer;
	}
	.menu-group-m .menu-btn {
		display: block;
	}
	.menu-group-m.active .menu-items-m {
		display: block;
		width: max-content;
	}
	.menu-group-m.active .menu-items-m .menu-item-m {
		padding: 10px 20px;
		font-size: 16px;
	}
	.menu-group-m.active .menu-items-m .menu-item-m:hover {
		background-color: #DFDFDF;
		cursor: pointer;
	}
} */

/* shortcut-menu */
.shortcut-menu {
	margin-bottom: 10px;
}

.shortcut-menu ul {
	display: flex;
	justify-content: right;
}

.shortcut-menu ul li {
	padding: 0px 5px;
	cursor: pointer;
}

/**
 * 버튼 그룹
 */
.button-group2 {
	display: flex;
	justify-content: left;
	align-items: center;
	margin: 0 auto;
}

.button-group2 button {
	width: 160px;
	height: 45px;
	font-size: 16px;
	font-weight: 400;
	margin: 0 4px;
	padding-top: 4px;
	color: #fff;
	background-color: #206ae2;
	border-radius: 2px;
	border: 0;
	box-sizing: border-box;
}

.button-group2 button:hover {
	background-color: #063f95;
}

.button-group2 button span {
	margin-left: 5px;
}

.button-group2 button.outline {
	color: #206ae2;
	background-color: transparent;
	border: 1px solid #206ae2;
}

.button-group2 button.outline:hover {
	border-color: #063f95;
	color: #063f95;
}

/* 팔래트 선택(그래프 수정) */
.red-palette-option {
	height: 45px;
    align-items: center;
    padding: 10px 50px;
    margin-top: 25px;
    border: 1px solid #d3d3d3;
    border-radius: 35px;
    display: flex!important;
	justify-content: center;
	gap: 15px;
}

.red-palette-option .title img {
	margin-right: 7px;
	position: relative;
	top: 3px;
}

.red-palette-option .palette-select {
    min-width: 320px;
	max-width: 400px;
    position: relative;
}

.red-palette-option .selected-custom {
	position: relative;
	width: 150px;
	height: 42px;
	font-size: 13px;
	color: #4e4e4e;
	outline: none;
	cursor: pointer;
	border: 1px solid #d3d3d3;
	border-radius: 4px;
	padding: 0px 10px;
	box-sizing: border-box;
	background: url("../../images/red/ico_arrow_down.svg") no-repeat 90% 50%;
	background-color: #fff;
	appearance:none;
}

.red-palette-option .selected-option {
	height: 42px;
	box-sizing: border-box;
    padding: 7px 10px;
    border: 1px solid #d3d3d3;
	border-radius: 4px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-size: 13px;
	color: #4e4e4e;
}

.red-palette-option .arrow {
    transition: transform 0.3s ease;
    width: 18px;
    height: 9px;
	margin-left: 15px;
}

.red-palette-option .dropdown-options {
    display: none;
    position: absolute;
    top: 98%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.red-palette-option .option {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.red-palette-option .option:last-child {
    border-bottom: none;
}

.red-palette-option .option:hover {
    background: #e9e9e9;
}

.red-palette-option .palette {
    display: flex;
    flex-wrap: wrap;
}

.red-palette-option .colorBox {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
    font-weight: bold;
	font-size: 12px;
}

.red-palette-option .adm-button-group button {
	display: flex;
	align-items: center;
	justify-content: space-around;
	font-size: 16px;
	font-weight: 400;
	margin: 0 4px;
	padding: 11px 10px;
	color: #fff;
	background-color: #206ae2;
	border-radius: 2rem;
	border: 0;
	width: 150px;
}

.red-palette-option .adm-button-group button:hover {
	background-color: #063f95;
}