@charset "UTF-8";

@import url(//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css);

* {
    font-family: 'Spoqa Han Sans Neo', 'sans-serif';
}
/* basic css */
html {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	height: 100%;
	
	font-family: SpoqaHanSansNeo;
	font-size: 16px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-align: left;
	color: #000;	
}

.layout-container {
	width: 1920px;
	height: 100%;
	position: relative;
/*  	overflow: hidden; */
	overflow-x: hidden;
	margin: 0 auto;
	background-color: #f0f0f0;
}

.content-container {
	height: calc(100% - 50px);
	background-color: #f0f0f0;
	display: flex;
}

/* component css */
.component-container {
	padding: 30px;
	flex-grow: 1;
	display: grid;
	column-gap: 30px;
	row-gap: 30px;
	color: #2b2f24;
}

.c-box {
	padding: 30px;
	background-color: #fff;
	border-radius: 18px;
}

.c-box .p-title {
	width: 100%;
	font-size: 32px;
	font-weight: 600;
	margin: 0;
}

.c-box .in-box {
	border-radius: 6px;
	box-shadow: 0 2px 6px -1px rgba(28, 55, 90, 0.12);
}

.c-box .btn {
	width: 100%;
	height: 45px;
	padding: 8px 14px;
	border-radius: 6px;
	background-color: #2b2f24;
	color: #fff;
	text-align: center;
	cursor: pointer;
	font-weight: bold;
}

.c-box .btn.white-btn {
	background-color: #fff;
	border: 1px solid #2b2f24;
	color: #2b2f24;
}

.c-box .btn.red-btn {
	background-color: #fff;
	border: 1px solid #ea4a7e;
	color: #ea4a7e;
}

.c-box .btn-box {
	width: 100%;
	height: 85px;
	display: flex;
	justify-content: space-between;
	padding: 0 25px 20px 30px;
	box-shadow: 0 2px 6px -1px rgba(28, 55, 90, 0.1), 0 -8px 24px -4px rgba(28, 50, 79, 0.15);
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	background-color: #fff;
}

.scroll-box::-webkit-scrollbar {
    width: 6px;
}
.scroll-box::-webkit-scrollbar-thumb {
    background-color: #8c8c8c;
    border-radius: 15px;
}
.scroll-box::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 15px;
    box-shadow: inset 0px 0px 5px white;
}

.dropdown {
	position: relative;
	cursor: pointer;
	font-family: SpoqaHanSansNeo;
}

.dropdown-text {
	position: relative;
}

.dropdown-content {
	width: 100%;
	display: none;
	position: absolute;
	top: 20px;
	background-color: #fff;
	box-shadow: 0 2px 6px -1px rgba(28, 55, 90, 0.12), 0 8px 24px -4px rgba(28, 50, 79, 0.15);
	z-index: 1;
	border-radius: 8px;
	padding: 5px;
	margin-top: 10px;
}

.dropdown-choice {
	width: 100%;
	padding: 7px 10px;
	font-size: 16px;
	border-radius: 4px;
	font-weight: normal;
}

.dropdown-choice:hover {
	background-color: #d4d4d4;
}

.dropdown-choice.selected {
	background-color: #d4d4d4;
}

.dropdown-choice.delete {
	color: #ea4a7e;
	padding-right: 0;
	padding-left: 0;
}

.dropdown-divider {
	background-color: #d4d4d4;
	margin: 5px;
}

.show {
	display: block;
}

.triangle {
	width: 0px;
	height: 0px;
	border-top: 6px solid #8c8c8c;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* utility css */
.cp {
	cursor: pointer;
}

.vaf {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.limit {
	text-overflow: ellipsis;  /* 위에 설정한 너비보다 길면 말줄임표처럼 표시합니다. */
	white-space: nowrap;    /* 줄바꿈을 하지 않습니다. */
	overflow: hidden;
}

.stop-drag {
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

a:link { color: inherit; text-decoration: none;}  
a:visited { color: inherit; text-decoration: none;} 
a:hover { color: inherit; text-decoration: none;}
a:active { color: inherit; text-decoration: none;}