/* ============================
	전체 기본 스타일
============================ */

:root {
	--line-color: #bbb;
	--kpi-border: 1px solid #bbb;
	--kpi-radius: 10px;
	--brand-color: #6172E9;
}


* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "Noto Sans KR", sans-serif;
	color: #000;
	background-color: #fff;
}

a {
	color: inherit;
	text-decoration: none;
}
a:visited {
	color: inherit;
}

/* ============================
  아이콘 색상
============================ */

.color-recv {
	color: #4b5563 !important;
}
.color-wait {
	color: #f99716 !important;;
}
.color-assigned {
	color: #0ea5e9 !important;;
}
.color-delay {
	color: #6f0fff !important;;
}
.color-meet {
	color: #0553e3 !important;;
}
.color-suim {
	color: #f40 !important;;
}
.color-progress {
	color: #0faf40 !important;
}
.color-assign-delay {
	color: #61abe7 !important;;
}
.color-dup {
	color: #757 !important;;
}



.color-call {
	color: #c0720d !important;;
}
.color-visit {
	color: #22c55e !important;
}
.color-trip {
	color: #0ea5e9 !important;
}
.color-manage {
	color: #ffc400 !important;
}




/* ============================
	전체 레이아웃
============================ */

.crm-layout {
	display: flex;
	min-height: 100vh;
	background-color: #fff;
}

/* ============================
	사이드바
============================ */

.crm-sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 150px;
	height: 100vh;
	background-color: #f4f4f4;
	border-right: 1px solid #bbb;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px 0 0 0;
}

/* 로고 */

.crm-sidebar-logo {
	width: 100%;
	/*padding-bottom: 12px;*/
	/*border-bottom: 1px #ddd solid;*/
	text-align: center;
}

.crm-sidebar-logo .logo-text {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0px;
	color: #333;
}

.crm-sidebar-logo .logo-img {
	height: 80px;
}

.crm-sidebar-logo .logo-img img {
	width: 70px;

}


/* 메뉴 */

.crm-sidebar-nav {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 100%;
	box-sizing: border-box;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.nav-item {
	width: 100%;
	height: 50px;
	border: none;
	border-radius: 8px;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding-left: 6px;
	gap: 6px;
	font-size: 14px;
	background-color: transparent;
	display: none;  /* to flex */
	cursor: pointer;
}

.nav-item .nav-icon {
	/*margin-bottom: 2px;*/
	/*text-align: center;*/
}

.nav-item .nav-icon svg {
	max-width: 18px;
	max-height: 18px;
	margin-right: auto;
	fill: #444 !important;
	vertical-align: middle;
}

.nav-item .nav-label {
	display: inline-block;
	font-size: 14px;
	color: #333;
	vertical-align: middle;
	white-space: nowrap;
}


/*.nav-item label {*/
/*	white-space: nowrap;*/
/*	cursor: inherit;*/
/*}*/

.nav-item:hover {
	background-color: #ccc;
}

.nav-item.active {
	background-color: #6172E9;
	color: #ffffff;
}

.nav-item.active svg {
	fill: #fff !important;
}

.nav-item.active .nav-label {
	color: #fff;
}

/* ============================
	사이드바 하단 로그인 사용자 영역
============================ */

.crm-sidebar-userbox {
	width: 100%;
	padding: 12px 8px 12px 10px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
}

.crm-sidebar-userbox .user-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: white;
	border: 1px solid #aaa;
	/*color: #ffffff;*/
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.crm-sidebar-userbox .user-meta {
	text-align: center;
	font-size: 11px;
	color: #6b7280;
	line-height: 1.2;
}

.crm-sidebar-userbox .user-name {
	font-size: 12px;
	font-weight: 600;
	color: #111827;
}

.crm-sidebar-userbox .btn-logout {
	margin-top: 4px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	background-color: #ffffff;
	font-size: 11px;
	color: #4b5563;
	cursor: pointer;
	margin-left: auto;
}

.crm-sidebar-userbox .btn-logout svg {
	width: 18px;
	height: 18px;
}

.crm-sidebar-userbox .btn-logout:hover {
	background-color: #e5e7eb;
}


/* ============================
	상단바
============================ */

.crm-main {
	margin-left: 150px;
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.crm-topbar {
	height: 64px;
	background-color: #fff;
	/*display: flex;*/
	align-items: center;
	justify-content: space-between;
	padding: 0 32px;
	border-bottom: 1px solid #e4e6eb;
	display: none;
}

/* 상단바 왼쪽 영역을 플렉스로 정렬 */
.topbar-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.topbar-logo {
	display: none;
	font-size: 12px;
	font-weight: 600;
	color: #111827;
}

.topbar-right {
	display: flex;
	align-items: center;
}

/* 모바일 메뉴 버튼 기본 스타일 */
.btn-menu-toggle {
	display: none;        /* 기본은 숨김 (PC용) */
	background: none;
	border: none;
	font-size: 22px;
	margin-right: 12px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

.topbar-left .topbar-date {
	font-size: 20px;
	font-weight: 600;
	color: #111827;
}

/* 모바일 메뉴 버튼 */
.btn-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	margin-right: 12px;
	cursor: pointer;
}

/* 모바일에서 사이드바 오버레이 */
.crm-sidebar-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.35);
	z-index: 900;
}

/* 모바일 토글 사이드바 */
.crm-sidebar {
	z-index: 1000;
	transition: transform 0.25s ease;
}

/* ============================
	메인 컨텐츠 영역
============================ */

.crm-main-body {
	flex: 1;
	padding: 16px 14px 24px;
	display: flex;
	justify-content: center;
}

.crm-main-inner {
	width: 100%;
	/*max-width: 1440px;*/
	min-height: 300px;
}

/* ============================
	공통 테이블 스타일
============================ */

.table {
	width: 100%;
	border-collapse: collapse;
	background-color: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
}

.table thead th {
	padding: 12px 14px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	background-color: #f9fafb;
	border-bottom: 2px solid #e5e7eb;
	color: #374151;
}

.table tbody td {
	padding: 12px 14px;
	font-size: 13px;
	border-bottom: 1px solid #f0f0f0;
	color: #374151;
	text-align: center;
}

.table tbody tr:last-child td {
	border-bottom: none;
}





.btn-primary {
	border-radius: 5px;
	/*background-color: #365d98;*/
	background-color: #6172E9;
	padding: 5px 10px;
	border: none;
	color: #fff;
	cursor: pointer;
}
.btn-outline {
	border: 1px #ccc solid;
	border-radius: 5px;
	background-color: #fff;
	padding: 5px 10px;
	cursor: pointer;
}

/*상단 탭*/
.segment-tabs {
	display: inline-flex;
	background: #f1f1f5;
	border-radius: 30px;
	padding: 4px;
	gap: 2px;
	margin-bottom: 14px;
}

.segment-tab {
	flex: 0 0 auto;
	padding: 6px 18px;
	border-radius: 30px;
	background: transparent;
	color: #555;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.15s ease;
	white-space: nowrap;
}

.segment-tab.active {
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	color: #222;
	font-weight: 600;
}



/* ============================
	공통 페이징 스타일
============================ */

.pagination {
	margin-top: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}

.page-pages {
	display: inline-block;
	white-space: nowrap;
}

.page-btn,
.page-num {
	min-width: 32px;
	height: 32px;
	border-radius: 5px;
	border: 1px solid #e5e7eb;
	background-color: #ffffff;
	font-size: 13px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #4b5563;
}

.page-btn {
	background-color: #efefef;
}

.page-btn[disabled] {
	opacity: 0.4;
	cursor: default;
}

.page-num.active {
	border-color: transparent;
	color: #000;
	font-weight: 600;
	cursor: default;
}

/* ===========================
   공통모달
============================ */

/* 공통 모달 래퍼 */
.common-modal {
	position: fixed;
	inset: 0;
	/*z-index: 2000;*/
	display: flex;
	align-items: center;
	justify-content: center;
	/*pointer-events: none;*/
	background-color: rgba(0,0,0,.3);
}

/* 모달 박스 */
.common-modal .modal-box {
	position: relative;
	z-index: 1;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
	padding: 14px 16px 12px;
	max-width: 460px;
	width: 100%;
	box-sizing: border-box;
}

/* 모바일에서 양 옆 15px 여백 보장 */
@media (max-width: 767px) {
	.common-modal {
		padding: 0 15px;
		align-items: center;
	}
}

/* 타이틀 */
.common-modal .modal-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 10px;
}

/* 바디 */
.common-modal .modal-body {
	font-size: 13px;
	color: #444;
	margin-bottom: 12px;
}

/* 폼 레이아웃 */
.common-modal .modal-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 10px;
}

.common-modal .modal-label {
	font-size: 12px;
	font-weight: 600;
	color: #333;
}

.common-modal .modal-label .req {
	color: #e74c3c;
	margin-left: 2px;
}

.common-modal .modal-field {
	width: 100%;
}

.common-modal .modal-input,
.common-modal .modal-textarea,
.common-modal .modal-select {
	width: 100%;
	box-sizing: border-box;
	padding: 7px 9px;
	border-radius: 6px;
	border: 1px solid #d9d9e3;
	font-size: 13px;
	outline: none;
	background: #fff;
}

.common-modal .modal-input:focus,
.common-modal .modal-textarea:focus,
.common-modal .modal-select:focus {
	border-color: #1c82f0;
	box-shadow: 0 0 0 1px rgba(28, 130, 240, 0.12);
}

.common-modal .modal-textarea {
	resize: vertical;
	min-height: 72px;
}

/* 공통 modal select */
.common-modal .modal-select {
	width: 100%;
	box-sizing: border-box;
	padding: 7px 32px 7px 9px; /* 오른쪽 여백 확보 */
	border-radius: 6px;
	border: 1px solid #d9d9e3;
	font-size: 13px;
	background: #fff url("data:image/svg+xml;utf8,<svg fill='%23666' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 8px center;
	appearance: none;       /* 기본 화살표 제거 (크롬/엣지/사파리) */
	-moz-appearance: none;  /* 파이어폭스 */
	-webkit-appearance: none;
	cursor: pointer;
}

/* focus 상태 */
.common-modal .modal-select:focus {
	border-color: #1c82f0;
	box-shadow: 0 0 0 1px rgba(28, 130, 240, 0.12);
	outline: none;
}

/* IE 전용 화살표 제거 */
.common-modal .modal-select::-ms-expand {
	display: none;
}


/* 푸터 버튼 영역 */
.common-modal .modal-foot {
	display: flex;
	justify-content: flex-end;
	gap: 6px;
}

/* 버튼은 기존 공통 클래스 사용 가정 */
.common-modal .modal-foot .btn-primary,
.common-modal .modal-foot .btn-outline {
	font-size: 13px;
	padding: 6px 12px;
}




/* 좁은 화면에서 버튼 줄바꿈 */
@media (max-width: 480px) {
	.common-modal .modal-foot {
		flex-wrap: wrap;
		justify-content: flex-end;
	}
}



/* ============================
	반응형 처리
============================ */

/* 모바일: 0 ~ 767px */
@media (max-width: 767px) {

	/* 햄버거 버튼 보이게 */
	.btn-menu-toggle {
		display: inline-block;
	}

	/* 모바일 사이드바: 폭 넓히고 슬라이드로 표시 */
	.crm-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 150px;
		padding-top: 8px;
		/*padding-left: 16px;*/
		/*padding-right: 16px;*/
		align-items: flex-start;
		background-color: #f4f4f4;
		box-shadow: 2px 0 8px rgba(0, 0, 0, 0.18);
		transform: translateX(-100%);
		z-index: 1000;
	}

	.crm-sidebar.open {
		transform: translateX(0);
	}

	/* 사이드바 오버레이 */
	.crm-sidebar-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.35);
		z-index: 900;
	}

	.crm-sidebar-overlay.active {
		display: block;
	}

	/* 로고 */
	.crm-sidebar-logo {
		width: 100%;
		/*border-bottom: 1px solid #ccc;*/
		/*padding-bottom: 0;*/
		display: flex;
		align-items: start;
		justify-content: center;
		padding-left: 4px;
	}

	.crm-sidebar-logo .logo-img {
		/*height: 35px;*/
	}

	.crm-sidebar-logo .logo-img img {
		width: 60px;
	}


	/* 메뉴 영역 */
	.crm-sidebar-nav {
		width: 100%;
		align-items: flex-start;
		padding-top: 16px;
		gap: 5px;
	}

	/* 메뉴 아이템: 아이콘 좌측, 텍스트 우측 */
	.nav-item {
		width: 100%;
		height: 45px;
		border-radius: 8px;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		padding-left: 6px;
		column-gap: 10px;
		font-size: 13px;
	}

	/*.nav-item .nav-icon {*/
	/*	margin: 0;*/
	/*	display: flex;*/
	/*	align-items: center;*/
	/*	justify-content: center;*/
	/*}*/

	/*.nav-item .nav-icon svg {*/
	/*	width: 22px;*/
	/*	height: 22px;*/
	/*}*/

	/*.nav-item .nav-label {*/
	/*	display: inline-block;*/
	/*	font-size: 14px;*/
	/*	color: #333;*/
	/*}*/

	/*.nav-item.active {*/
	/*	background-color: #111827;*/
	/*	color: #fff;*/
	/*}*/

	/*.nav-item.active .nav-label {*/
	/*	color: #fff;*/
	/*}*/

	/*.nav-item.active svg {*/
	/*	fill: #fff !important;*/
	/*}*/

	/*!* 사이드바 하단 사용자 정보 (모바일: 가로 배치) *!*/
	/*.crm-sidebar-userbox {*/
	/*	flex-direction: row;*/
	/*	align-items: center;*/
	/*	justify-content: flex-start;*/
	/*	width: 100%;*/
	/*	margin-top: 20px;*/
	/*	padding: 8px 8px 8px 4px;*/
	/*	gap: 8px;*/
	/*}*/

	/*.crm-sidebar-userbox .user-meta {*/
	/*	text-align: left;*/
	/*	font-size: 12px;*/
	/*}*/

	/*.crm-sidebar-userbox .btn-logout {*/
	/*	margin-top: 0;*/
	/*	margin-left: auto;*/
	/*	font-size: 12px;*/
	/*	white-space: nowrap;*/
	/*}*/


	/* 상단바 / 본문 */

	/* 상단바 공통 크기/패딩 */
	.crm-topbar {
		position: relative;
		height: 56px;
		padding: 0 12px;
		display: flex;
		align-items: center;
		background-color: #f4f4f4;
	}

	/* 왼쪽: 로고 영역 */
	.topbar-left {
		display: flex;
		align-items: center;
	}

	.topbar-logo {
		height: 100%;
		display: flex;
		align-items: center;
		/*font-size: 14px;*/
		/*font-weight: 600;*/
		/*color: #111827;*/
	}

	.topbar-logo img {
		height: 35px;
		width: auto;
	}

	/* 날짜를 헤더 전체 기준으로 정중앙에 고정 */
	.topbar-date {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		font-size: 16px;
		font-weight: 600;
	}

	/* 오른쪽: 햄버거 버튼 */
	.topbar-right {
		margin-left: auto;
		display: flex;
		align-items: center;
	}

	.btn-menu-toggle {
		display: inline-block;
		font-size: 22px;
		background: none;
		border: none;
		cursor: pointer;
	}

	.crm-main {
		margin-left: 0;
	}

	.crm-main-body {
		padding: 12px;
	}

	/* 테이블 가로 스크롤 허용 */
	.table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}

/* 태블릿: 768px ~ 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
	.crm-topbar {
		padding: 0 20px;
	}
	.crm-main-body {
		padding: 16px;
	}
}


.sync-tpl {
	display: none;
}

.nowrap {white-space: nowrap}

.w50 {width: 50px !important}
.w80 {width: 80px !important}
.w100 {width: 100px !important}
.w120 {width: 120px !important}
.w150 {width: 150px !important}
.w200 {width: 200px !important}
.w300 {width: 300px !important}
.w400 {width: 400px !important}

.aleft {text-align: left !important}
.aright {text-align: right !important}
.acenter {text-align: center !important}


/* --------------------------------
    상담목록 리스트
    (상담목록, 상담화면 공통)
-------------------------------- */


.tabs {
	display: flex;
	gap: 2px;
}
.tabs .tab {
	flex: 1;
	padding: 5px 12px;
	border: 1px #bbb solid;
	border-radius: 6px;
	color: #333;
	font-size: 13px;
	white-space: nowrap;
	cursor: pointer;
}
.tabs .tab:hover {
	background-color: #e9e9e9;
}
.tabs .tab.active {
	background-color: #777;
	border-color: #777;
	color: #fff;
}



.cl-table-wrap {
	flex: 1;
	min-height: 0;
	background-color: #ffffff;
	overflow: auto;
}

.cl-table {
	width: 100%;
	border-spacing: 0;
	/*border-collapse: collapse;*/
	/*table-layout: fixed;*/
	border: 1px solid var(--line-color);
	border-radius: 6px;
	overflow: hidden;
}

.cl-table thead {
	background-color: #f1f1f1;
	border-bottom: 1px solid #e5e7eb;
}

.cl-table th {
	font-size: 13px;
	font-weight: 500;
	color: #333;
	padding: 15px 12px;
	text-align: center;
	border-left: 1px solid #ccc;
	white-space: nowrap;
}
.cl-table th:first-child {
	border-left: 0;
}

.cl-table td {
	height: 72px;
	color: #000;
	font-size: 14px;
	border-top: 1px solid var(--line-color);
	white-space: nowrap;
	padding: 0 12px;
	text-align: center;
	vertical-align: middle;
}
.cl-table td .row-inner-main {
	/*text-align: left;*/
	font-weight: 500;
}
.row-inner-meta {
	font-size: 13px;
	color: #777;
}
.warn {
	color: #c64400;
}
.row-inner-meta.phone {
	color: #000;
}


.cl-table tbody tr:hover {
	background-color: #f9f9f9;
}

.row-inner-box {
	/*display: inline-block;*/
	/*text-align: left;*/
}

.badge-done {
	display: inline-block;
	padding: 4px 8px 4px 6px;
	border-radius: 4px;
	background-color: orange;
	color: #fff;
	font-size: 13px;
	line-height: 100%;
}


i.offtime {
	color: orange;
}
i.revisit {
	color: #00bbff;
}
i.manage {
	color: green;
}


.btn-assign {
	background-color: white;
	border: 1px green solid;
	color: green;
	font-size: 13px;
}
.btn-assign:hover {
	background-color: #effaef;
}

span.revisit {
	display: inline-block;
	line-height: 100%;
	font-size: 13px;
	padding: 2px 5px;
	border-radius: 3px;
	border: 1px solid darkorange;
	color: darkorange;
	margin-left: 3px;
}

/* ============================
   (공통) 상단 래퍼
============================ */
.tf-stats-top{
	display:flex;
	flex-direction:column;
	gap:10px;
	padding:10px 12px;
	border-radius:12px;
	border:1px solid var(--line-color);
	background:#fff;
}

/* ============================
   (공통) 기간바
============================ */
.tf-periodbar{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	/*padding:10px 12px;*/
	/*border-radius:12px;*/
	/*border:1px solid var(--line-color);*/
	/*background:#fff;*/
}

/* 좌측 / 중앙 / 우측 */
.tf-periodbar__mode{ display:flex; gap:6px; }
.tf-periodbar__nav{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	flex:1 1 auto;
	min-width:0;
}
.tf-periodbar__quick{ display:flex; gap:6px; }

/* 중앙 라벨 */
.tf-periodbar__label{
	min-width:120px;
	text-align:center;
	font-size:20px;
	font-weight:700;
	color:#111827;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}

/* ============================
   버튼 공통 (기본/active)
============================ */
.tf-seg-btn,
.tf-nav-btn,
.tf-quick-btn,
.tf-chip{
	background:#fff;
	border:1px solid var(--line-color);
	color:#374151;
	font-weight:700;
	cursor:pointer;
	line-height:1;
}

/* active 상태 */
.tf-seg-btn.is-active,
.tf-quick-btn.is-active,
.tf-chip.is-active{
	background:var(--brand-color);
	border-color:var(--brand-color);
	color:#fff;
}

/* ============================
   버튼 크기
============================ */
.tf-seg-btn,
.tf-quick-btn{
	padding:7px 10px;
	border-radius: 6px;
	font-size:13px;
}

.tf-nav-btn{
	width:34px;
	height:34px;
	border-radius: 50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:14px;
}

.tf-nav-btn:active{
	transform:translateY(1px);
}

/* ============================
   (공통) 분야 필터바
============================ */
.tf-filterbar{
	padding-top: 10px;
	border-top: 1px solid var(--line-color);
	/*border-radius:12px;*/
	/*border:1px solid var(--line-color);*/
	/*background:#fff;*/
}

/* 분야 칩 레일 */
.tf-chiprail{
	display:flex;
	align-items:center;
	gap:6px;
	overflow-x:auto;
	-webkit-overflow-scrolling:touch;
	padding-bottom:2px;
}

.tf-chip{
	padding:7px 12px;
	border-radius: 6px;
	font-size:13px;
	white-space:nowrap;
}

/* ============================
   반응형
============================ */
@media (max-width: 767px){
	.tf-periodbar{
		flex-wrap:wrap;
		align-items:stretch;
	}

	.tf-periodbar__mode,
	.tf-periodbar__nav,
	.tf-periodbar__quick{
		width:100%;
	}

	.tf-periodbar__label{
		min-width:0;
		flex:1 1 auto;
	}
}



/* label + check */
.chk input[type=checkbox],
.chk input[type=radio] {
	display: none;
}
.chk {
	display: inline-flex;
	height: 30px;
	min-width: 30px;
	border: 1px solid #ccc;
	border-radius: 6px;
	cursor: pointer;
	user-select: none;
	transition: all .2s;
	align-items: center;
	justify-content: center;
}
.chk i {
	color: #929292;
}
.chk:has(input:checked) {
	background: orange;
	border-color: orange;
	color: #fff;
}
.chk:has(input:checked) i {
	color: #fff;
}
