@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Noto Sans KR Light'), local('NotoSansKR-Light'), url(/assets/font/NotoSansKR-Light.woff2) format('woff2'), url(/assets/font/NotoSansKR-Light.woff) format('woff'), url(/assets/font/NotoSansKR-Light.otf) format('opentype');
    unicode-range: U+AC00-D7A3, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Noto Sans KR Regular'), local('NotoSansKR-Regular'), url(/assets/font/NotoSansKR-Regular.woff2) format('woff2'), url(/assets/font/NotoSansKR-Regular.woff) format('woff'), url(/assets/font/NotoSansKR-Regular.otf) format('opentype');
    unicode-range: U+AC00-D7A3, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Noto Sans KR Medium'), local('NotoSansKR-Medium'), url(/assets/font/NotoSansKR-Medium.woff2) format('woff2'), url(/assets/font/NotoSansKR-Medium.woff) format('woff'), url(/assets/font/NotoSansKR-Medium.otf) format('opentype');
    unicode-range: U+AC00-D7A3, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Noto Sans KR Bold'), local('NotoSansKR-Bold'), url(/assets/font/NotoSansKR-Bold.woff2) format('woff2'), url(/assets/font/NotoSansKR-Bold.woff) format('woff'), url(/assets/font/NotoSansKR-Bold.otf) format('opentype');
    unicode-range: U+AC00-D7A3, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}


/*********************
 * 공통
 *********************/

* {box-sizing: border-box;}

:focus {
    outline: none;
}

textarea, input {
    cursor: text;
}

img {
	max-width:100%;
}

html, body {
	font-size:14px !important;
	font-family: "Noto Sans KR",AppleSDGothicNeo-Regular,Malgun Gothic,dotum,sans-serif;
	padding:0px !important;
	margin:0px !important;
	overflow-x:hidden;
}

a {
	color:#333;
	text-decoration:none;
}

figure {
	margin:0px 0px 20px 0px;
}


.btn {
    background-color: transparent;
    background-image: none;
	border: none;
    box-sizing: content-box;
    line-height: inherit;
    display: flex;
    flex-direction: column;
	cursor:pointer;
    transition: all 150ms ease 0s;
    overflow: hidden;
    text-overflow: clip;
    text-align: center;
    font-weight: 590;
}

.title {
	font-weight:700;
	margin-bottom:10px;
	font-size:120%;
}

.text-center {text-align:center;}
.text-right {text-align:right;}

.w100 {width:100%;}

.text-muted {
	color:#aaa;
}

.px {
	padding-left:15px;
	padding-right:15px;
}

.py {
	padding-top:15px;
	padding-bottom:15px;
}

.my {margin-top:15px;margin-bottom:15px;}
.mt {margin-top:15px;}
.me-2 {margin-right:5px;}
.mb-2 {margin-bottom:10px;}
.mb-4 {margin-bottom:20px;}

#pagination {
	margin-top:15px;
	margin-bottom:15px;
}

#pagination a {margin-right:5px;margin-left:5px;}
#pagination a.active {
	background-color:#1a61c1;
	color:#fff;
}

.d-flex {
	display: flex!important;
}

.justify-content-between {
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
}

.align-items-center {
	align-items: center!important;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-stack {
    justify-content: space-between;
    align-items: center;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.875rem 0.75rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-sm {
    padding: 0.575rem 0.75rem;
}

.btn:hover {
	opacity:0.9;
}

.btn-block {display:block;}

.btn-primary {
    color: #fff;
    background-color: #1a61c1;
    border-color: #1a61c1;
}

.btn.btn-warning {
    color: #ffffff;
    border-color: #ffc700;
    background-color: #ffc700;
}

.btn.btn-danger {
    color: #ffffff;
    border-color: #f1416c;
    background-color: #f1416c;
}

.btn.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: calc(1.2em + 1.2rem);
    width: calc(1.2em + 1.2rem);
}

.btn-light {
	color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.bg-light {
	background: rgb(242, 242, 242);
}

.text-success {
    color: #50cd89!important;
}
.bg-light-success {
    background-color: #50cd89!important;
}

.p-2 {
    padding: 0.5rem !important;
}

.fs-3 {
    font-size: calc(1.26rem + .12vw)!important;
}

.fw-semibold {
    font-weight: 500!important;
}

.separator.separator-dashed {
    border-bottom-style: dashed;
    border-bottom-color: #ccc;
}

.separator {
    display: block;
    height: 0;
	border:0px;
    border-bottom: 1px solid #ccc;
	margin-top:20px;
	margin-bottom:20px;
	opacity:0.8;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group>.form-control, .input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group .form-control {
    border-color: #e4e6ef !important;
    background-color: #fff !important;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group .input-group-prepend select {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(1rem * .5);
    padding-left: calc(1rem * .5);
    margin-top: calc(1rem * .5);
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.ck-editor__editable_inline {
    height: 100px;
}
.ck-content {
    min-height: 100px;
    border-radius: 0.475rem!important;
}

.ck-editor__main p {
	margin-bottom:5px;
	margin-top:5px;
}

.d-none {
    display: none!important;
}

.text-dark {
    color: #181C32!important;
}
.alert-secondary {
    color: #E4E6EF;
    border-color: #E4E6EF;
    background-color: #E4E6EF;
}

.border {
    border: 1px solid #ccc !important;
}

.rounded {
    border-radius: 0.475rem!important;
}

/*********************
 * 레이아웃
 *********************/

.wrapper {
	position:absolute;
	display:flex;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	flex-direction:column;
	background:#fff!important;
	overflow:hidden!important;
}

.header {
	position:relative;
	-webkit-box-align: center;
    padding: 9px;
	min-height:65px;
    overflow: hidden;
	background-color: #1a61c1 !important;
	color:#fff;
}

.header .top {
	display:flex;
	align-items: center;
}


.header-search {
	min-height:118px;
}

.body {
	position:relative;
	display:flex;
	flex-direction:column;
	webkit-box-flex: 1;
    flex-grow: 1;
    -webkit-box-pack: start;
    justify-content: flex-start;
    max-height: 100%;
	overflow:hidden auto;
	inset:0px;
}

#toolbar {
	padding:10px;
}

#toolbar .btn,#toolbar select  {
	padding: 0.475rem 0.45rem;
}

#toolbar select  {
	padding: 0.475rem 0.45rem;
	height:36px;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
	border:0px;
	border-bottom: 1px dotted #aaa;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/*********************
 * 모듈
 *********************/

.card-header {
	padding:20px 20px;
	border-bottom:1px solid rgba(0, 0, 0, 0.06);
}

.card-header h1,.card-header h2{
	margin:0px 0px 10px 0px;
}

.card-category {
	padding: 16px 20px;
	display:flex;
	justify-content: space-between;
	cursor:pointer;
	-webkit-box-align:center;
	align-items:center;
	transition:background-color 250ms ease 0s;
	position:relative;
	border-bottom:1px solid rgba(0, 0, 0, 0.06);
}

.in {
	flex:1 1 0%;
}

.cmd {
	margin-left:12px;
}

.cmd i {
	color:#1a61c1;
}

.card {
	position: relative;
    padding: 0px;
    background: white;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 8%) 0px 0px 0px 1px, rgb(0 0 0 / 6%) 0px 2px 8px;
    box-sizing: border-box;
	margin-bottom:20px;
}

.card .card-body {
	gap: 10px;
    padding: 10px;
}


.card-tag {
	padding: 0px 12px;
}

.card-item {
	padding: 12px 12px;
	display:flex;
	justify-content: space-between;
	cursor:pointer;
	-webkit-box-align:center;
	align-items:center;
	transition:background-color 250ms ease 0s;
	position:relative;
	border-radius:10px;
}

.card-item .comment {
    padding: 10px 0 10px 20px;
    margin: -10px 0;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
    min-width: 45px;
    box-sizing: border-box;
}

.card-item .comment a {
	color:#888;
}

.card-image img {
	border-top-left-radius:15px;
	border-top-right-radius:15px;
}

.header .back-button__icon {
	width: 48px;
    height: 48px;
    border-radius: 10px;
	display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    transition: background-color 250ms ease 0s;
	box-sizing: border-box;
	color:#fff;
}

.header .back-button__icon:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.header h1 {
	font-size:18px;
    font-weight: bold;
}

.body .content {
	margin-top:20px;
	padding:0px 15px;
	gap:12px;
	z-index:1;
}

/************************
 * INDEX
 ************************/
.header-index {
	padding:16px 25px 50px;
	background-color:transparent !important;
	color:#fff;
}

.header-index h1 {
	margin:0px;
	font-size:30px;
}

.header-index h2 {
	margin:0px;
	font-size:24px;
}

.header-index-top-bg {
	height: 260px;
    width: 100%;
    position: fixed;
    top: 0%;
    left: 0px;
    background: linear-gradient(to bottom, #1a61c1 70%, #FFF);
}


.logo-wrapper {
	display:flex;
	justify-content: space-between;    
	align-items: center;
    margin-bottom: 30px;
}

.logo {
	max-width:130px;
	max-height:40px;
}

.logo-wrapper .header-avatars img{
    margin: 0px auto;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    cursor: default;
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
}

.logo-wrapper .header-avatars img:not(:first-child) {
    margin-left:-10px;
}

.mt-up {
	margin-top:-20px !important;
}

/************************
 * FEEDBACK
 ************************/
.btn-feedback-vote {
	width:38px;
	align-self: flex-start;
	border-radius: 5px;
    transition: all .1s ease-in-out;
	margin: 0 15px 0 0;

	display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    padding: 8px 0 3px;
    background: hsla(0,0%,100%,.8);
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    transition: all .1s ease-in-out;
}

.btn-feedback-vote.active .upvote{
	border-bottom: 9px solid #1a61c1;
}

.btn-feedback-vote .upvote {
    border-bottom-color: #ddd;
}
.btn-feedback-vote .upvote {
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid rgba(35,35,35,.2);
    margin-bottom: 3px;
    transition: all .1s ease-in-out;
}

.btn-feedback-vote span {
    min-height: 13px;
    text-align: center;
    line-height: 13px;
    font-size: 15px;
    line-height: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

#content_admin {
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    min-height: 50px;
}

input, button, select, optgroup, textarea {
    font-family: "Noto Sans KR",AppleSDGothicNeo-Regular,Malgun Gothic,dotum,sans-serif;
}

.dropzone.dz-clickable {
    cursor: pointer;
}
.dropzone {
    overflow: auto;
    min-height: 80px !important;
    height: 80px !important;
    border: 1px solid rgba(125,125,125,.1) !important;
    background: #f5f8fa !important;
    padding: 10px !important;
    border-radius: 10px;
    font-size: 13px;
}

.dropzone .dz-message {
    text-align: center;
    margin: 1.5em 0 !important;
}

.symbol.symbol-35px .symbol-label {
    width: 30px;
    height: 30px;
}

.symbol .symbol-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--kt-symbol-label-color);
    background-color: var(--kt-symbol-label-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 0.475rem;
}


.comment-left-0 {
	margin-left:0px;
}

.comment-left-1 {
	margin-left:30px;
}

.comment-left-2 {
	margin-left:60px;
}

.comment-left-3 {
	margin-left:90px;
}

.comment-left-4 {
	margin-left:120px;
}

.comment-left-5 {
	margin-left:150px;
}

.comment-left-6 {
	margin-left:180px;
}

.comment-left-7 {
	margin-left:210px;
}

.comment-left-8 {
	margin-left:2400px;
}

.comment-left-9 {
	margin-left:2700px;
}

.symbol.symbol-20px>img {
    width: 20px;
    height: 20px;
}

.comment-toolbar .btn {
	padding:5px 10px !important;
	line-height:12px;
	font-size:12px;
}


.btn-comment-vote {
	background-color:#f5f8fa;
	color:#7E8299;
	line-height:12px;
	padding:3px 10px !important;
}

.btn-comment-vote .num {
	font-size:12px;
}

.btn-comment-vote:hover {
	background-color:#eee;
	color:#7E8299
}

.btn-comment-vote.active {
	background-color:#6571ff;	
	color:#fff;
}

.btn-comment-vote.active .svg-icon {
	color:#fff;
}

.comment-body p{
	word-wrap: break-word;
}
/************************
 * KNOW 
 ************************/
.wrapper-search {position:relative; margin-top:10px;margin-bottom:10px;}
.wrapper-search input {
	width:100%;padding:11.5px 10px;
	border-radius:10px;
	border:0px;
}
.wrapper-search a {
	position:absolute;
	right:10px;
	top:10px;
}

.chat {
	position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    min-height: 56px;
    max-height: 200px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	z-index: 1;
}

.chat textarea{
	font-family: "Noto Sans KR",AppleSDGothicNeo-Regular,Malgun Gothic,dotum,sans-serif;
	position: absolute;
	top:1px;
    bottom: 0px;
    left: 0px;
    color: rgb(26, 26, 26);
    resize: none;
    border: none;
    transition: background-color 200ms ease 0s, box-shadow 200ms ease 0s;
    outline-offset: -5px;

	box-sizing: border-box;
    padding: 18px 100px 18px 29px;
	width:100%;
	font-weight: normal;
    line-height: 1.33;
    background-color: rgb(255, 255, 255);
    white-space: pre-wrap;
    overflow-wrap: break-word;
    max-height: 200px;
    overflow: hidden;

}

.chat textarea:disabled {
    background: rgb(230, 230, 230) !important;
}

.chat textarea:focus {
	box-shadow: rgb(0 0 0 / 10%) 0px 0px 100px 0px;
}

.chat .chat-toolbar {
    position: absolute;
    top: 0px;
    right: 21px;
	bottom:0px;
}


.chat .chat-toolbar button {
    background-color: transparent;
	border: none;
    box-sizing: content-box;
    line-height: inherit;
	cursor:pointer;
    transition: all 150ms ease 0s;
    float: left;
    display: flex;
	align-items:center;
	justify-content:center;
    flex-direction: column;
    height: 100%;
	width:20px;
	font-size:16px;
}

.chat_view_body{
	margin-bottom:56px;
}

.btn-chat-wrapper {
	position:fixed;
	bottom:115px;
	width:100%;
	text-align:center;
	z-index:1;
}

.btn-chat-wrapper .btn {
	padding:10px 20px;
}

.content-chat {
	padding-bottom:40px !important;
}

.chat-wrapper {
	position: relative;
    animation: 1.2s ease 0s 1 normal none running animation-3x2utg;
    margin-bottom: 8px;
}

.chat-info {
	display: block;
    margin: 5px 0px;
    font-size: 11px;
}

.chat-msg {
	
}

.chat-msg-content {
	max-width:70%;
	position: relative;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    padding: 7px 12px;
    border-radius:  0px 18px 18px 18px;
    text-align: left;
    word-break: break-all;
    background: rgb(230, 230, 230) !important;
    color: rgb(100, 100, 100) !important;
}

.chat-wrapper .right {
	text-align:right;
}

.chat-wrapper .right .chat-msg-content{
    background: rgb(94, 130, 255) !important;
    color: rgb(255, 255, 255) !important;
    border-radius: 18px 0px 18px 18px;
}

.chat-msg-content ul {padding:0;}
.chat-msg-content ul li{margin-bottom:16px;list-style:none;}
.chat-wrapper .right .chat-msg-content a {color:#fff;}
.chat-msg-content input[type="text"]{margin:0.5rem 0;}
.chat-msg-content #chat_member_action{padding:0.25rem 0.75rem;margin-top:0.25rem;margin-right:0.75rem;}
.list_category, .list_faq {
	background-color: #fff;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
	box-shadow:rgb(0 0 0 / 10%) 2px 2px 2px;
}
#faq_img_box {max-width:300px;}
#faq_img_box img{width:100%;max-height:300px;display: block;}
#faq_link_box {width:100%;height:50px;background-color:#fafbfd;text-align:center;}
#faq_link_box a{width:100%;line-height:50px;display:block;}
#faq_content{padding:11px 21px 9px 14px;}

.footer {
	display:flex;
	flex-direction:row;
	-webkit-box-pack: justify;
    justify-content: space-between;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: rgb(0 0 0 / 5%) 0px 0px 25px;
    background-color: rgb(255, 255, 255);
    padding: 0px;

    align-items: center!important;
}

#footer_nav {border:1px solid #ccc;border-radius:10px;}
#footer_nav .prev {width:50%;text-align:left;padding:10px;border-right:1px solid #ccc;}

#footer_nav .next {width:50%;text-align:right;padding:10px;}
/**********************
 * 푸터
 **********************/

.footer a {
	width:100%;
	padding: 12px 0px;
	text-align:center;
	color:#666;
	text-decoration:none;
}

.footer a.active {
	color: #1a61c1;
}

.footer a i {
	font-size:20px;
	margin-bottom:8px;
}

.footer button {
	width:100%;
	padding: 12px 0px;
}

.footer button.active {
	color: rgb(82, 93, 249);
}

.footer button i {
	font-size:20px;
	margin-bottom:8px;
}
.footer button div, .footer button i {
	width:100%;
	text-align:center;
	color: rgb(90, 90, 90, 0.8);
}

.userdesk {
	padding:8px;
	text-align:center;
    font-size: 11px;
	padding: 8px 0px;
    transition: all 80ms ease 0s;
    text-align: center;
    width: 100%;
	font-family:helvetica;
    color: rgb(119, 118, 120, 0.8) !important;
}

/*****************************************
 * 모달
 *****************************************/
.modal {
    z-index: 3055;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
	background-color:rgba(100,100,100,.6);
}

.fade {
    transition: opacity .15s linear;
}

.modal.show {
  display: block;
}

.modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal.show .modal-dialog {
    transform: none;
}
.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0,-50px);
}

.modal-dialog {
    outline: 0!important;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal-content {
    color: var(--kt-modal-color);
    background-color: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    border-radius: 10px;
    outline: 0;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

.btn-close {
  box-sizing: content-box;
  width: 0.8em;
  height: 0.8em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.8em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}


.headder-close {display:none;
    z-index: 2147483003;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 150ms ease 0s;
    display: flex;
	cursor:pointer;
	position: fixed;
    top: 10px;
    right: 20px;
}

.headder-close svg {
    width: 12px;
    height: 12px;
}

.headder-close i {
    display: inline;
}

@media (max-width:991px) {
	.header-avatars {display:none;}
	.headder-close {display:flex;}
}

/*************************************
 * 메신저 홈
 *************************************/

.btn-other {
	display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative !important;
    width: 36px !important;
    height: 36px !important;
    overflow: hidden !important;
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-radius: 15.12px !important;
	margin-left:5px;
	position:relative;
}
.btn-other img {
	width: 100% !important;
    height: 100% !important;
    vertical-align: baseline !important;
}

.over-content-wrapper .click-content {
	display:none;
	position:absolute;
	top:48px;
	padding:5px 10px;
	border-radius:5px;
	border:1px solid #ccc;
	background-color:#fff;
	z-index:1;
	font-weight:800;
}

.over-content-wrapper:hover .click-content {
	display:block;	
}