@charset "utf-8";

.custom-scrollbar::-webkit-scrollbar {
	width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
	background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
	background: rgba(19, 19, 236, 0.1);
	border-radius: 10px;
}
.custom-scrollbar:hover::-webkit-scrollbar-thumb {
	background: rgba(19, 19, 236, 0.2);
}

/* ----------- 아이콘 크기가 조절 안되서 추가 시작 ----------*/
.material-symbols-outlined {
  line-height: 1;
}

.material-symbols-outlined.text-xs {
  font-size: 0.75rem;
}

.material-symbols-outlined.text-sm {
  font-size: 0.875rem;
}

.material-symbols-outlined.text-base {
  font-size: 1rem;
}

.material-symbols-outlined.text-lg {
  font-size: 1.125rem;
}

.material-symbols-outlined.text-xl {
  font-size: 1.25rem;
}

.material-symbols-outlined.text-2xl {
  font-size: 1.5rem;
}

.material-symbols-outlined.text-3xl {
  font-size: 1.875rem;
}

.material-symbols-outlined.text-4xl {
  font-size: 2.25rem;
}

.material-symbols-outlined.text-5xl {
  font-size: 3rem;
}

.material-symbols-outlined.text-6xl {
  font-size: 3.75rem;
}

.material-symbols-outlined.text-7xl {
  font-size: 4.5rem;
}
/* ----------- 아이콘 크기가 조절 안되서 추가 종료 ----------*/

/* ----------- 커스텀 체크 박스 시작 ------------ */
/* 기본 체크박스 숨기기 */
input[type="checkbox"] {
    display: none;
}

/* 커스터마이즈된 체크박스 스타일 */
.checkbox1 {
    position: relative;
    padding-left: 33px;
    cursor: pointer;
    user-select: none;
}

/* 체크박스의 커스터마이즈된 박스 */
.checkbox1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%; /* 중앙 정렬을 위한 위치 설정 */
    transform: translateY(-50%); /* 중앙 정렬을 위한 변환 */
    width: 22px; /* 체크박스 크기 조정 */
    height: 22px; /* 체크박스 크기 조정 */
    border: 2px solid #1dbdbf; /* 테두리 색상 */
    border-radius: 4px; /* 모서리 둥글게 */
    background-color: #fff; /* 배경색 */
}

/* 체크된 상태 스타일 */
input[type="checkbox"]:checked + .checkbox1::before {
    background-color: #1dbdbf; /* 체크된 배경색 */
    border-color: #1dbdbf; /* 체크된 테두리 색상 */
}

/* 체크 표시 */
input[type="checkbox"]:checked + .checkbox1::after {
    content: '✔'; /* 체크 표시 */
    position: absolute;
    left: 6px; /* 체크 표시 위치 조정 */
	top: 55%; /* 중앙 정렬을 위한 위치 설정 */
    transform: translateY(-50%); /* 중앙 정렬을 위한 변환 */
    color: white; /* 체크 표시 색상 */
    font-size: 19px; /* 체크 표시 크기 조정 */
}
/* ----------- 커스텀 체크 박스 종료 ------------ */

/* 팝업창 불투명 배경 */
#popup_mask_common {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*display: flex;*/
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.8); /* 배경 색상 및 투명도 설정 */
	z-index: 99999;
}

/* 처리중입니다 화면 */
#loading_message
{
	position: absolute;
	width:80%;
	font-size:25px;
	color: #fff;
	text-align: center;
}

/* 메세지 팝업 */
#popup_msg
{
	position: absolute;
	width: 92%; /* 팝업 너비 설정 */
	max-height: 90vh;
	background-color: #fff; /* 팝업 배경 색상 설정 */
	border-radius: 2vmin; /* 팝업 모서리 둥글게 설정 */
	display: flex;
}

/* 팝업창 불투명 배경(메세지 팝업) */
#popup_msg_mask {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*display: flex;*/
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.5); /* 배경 색상 및 투명도 설정 */
	z-index:999;
}

/* 팝업창 타이틀 */
#msg_title {
	font-size:20px;
	font-weight:bold;
	padding-bottom:20px;
}

/* 팝업창 내용 */
#msg_content {
	overflow:auto;
	max-height:calc(80vh - 220px); /* 팝업 높이에서 제목과 버튼, 패딩 높이를 제외 */
}

/* 메세지 팝업 확인 버튼 */
.msg_done
{
	-moz-appearance:none; /* 브라우저 기본 속성 해제(Firefox) */
	-webkit-appearance:none; /* 브라우저 기본 속성 해제(Safari and Chrome) */
	background-color:#216aad;
	padding: 15px 10px;
	font-size: 18px;
	text-align: center;
	border: none;
	border-radius: 1vmin;
	cursor:pointer;
	color:#ffffff;
	width:100%;
}

.msg_content_title1
{
	font-size:18px;
	font-weight:bold;
	padding-bottom:20px;
	padding-top:30px;
}

.msg_content_content1
{
	color:#003cff;
}

.msg_content_content2
{
	color:#9d29e6;
}

.msg_content_row_space1
{
	height:10px;
}