html,
body {
	height: 100%;
}

/*scrollbar*/
body::-webkit-scrollbar {
	display: none;
}
.panelmid::-webkit-scrollbar {
	display: none;
}
body.asm {
	position: relative;
	animation-name: bodyAnimation;
	animation-duration: 1.5s;
}

@keyframes bodyAnimation {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

/*font*/
h1,
h2,
h3,
h4,
h5,
p,
label,
span,
button,
input,
textarea,
select,
option,
div,
ul,
li {
	font-family: "Noto Sans KR";
}

/*label*/
label.asm {
	padding-bottom: 0.375rem;
	font-weight: 700;
	font-size: 0.875rem;
	line-height:150%;
	letter-spacing: -0.035px;
	color: #21212D;
}

label.asmDisabled > .slider:before {
	background-color: #e6e8f0;
}

label.require:after {
	content: "";
	display:inline-block;
	vertical-align: top;
	width:4px;
	height:4px;
	border-radius:100%;
	background-color:#F34040;
}

.asmDisabled label.asm {
	padding-bottom: 0.75rem;
}

/*div - input text container */
div.asm {
	display: flex;
	align-items: center;
	gap:0.75rem;
	background-color: #F2F4F7;
	height: 2.875rem;
	border-radius: 0.75rem;
	padding: 13px 1.25rem;
}

div.asm > img {
	width: 1.25rem;
	height: 1.25rem;
}

div.asm > input {
	width:100%;
	height: 100%;
	padding:0;
	border: none;
	background-color: transparent;
	font-size: 0.875rem;
	font-weight:500;
	letter-spacing:-0.42px;
}

div.asm:focus-within {
	background-color: #EAECF0;
}

div.asm > input.secure-font {
	width:calc(99% - 2.5rem);
	/* cursor: pointer; */
}

div.asm > input:focus {
	outline:none;
}

div.asm::placeholder {
	color:#A4A9B1;
}

div.asm > input.secure {
	width:calc(99% - 2.5rem);
}

div.asm > input:disabled::placeholder  {
	color: #DADDE1 !important;
}

div.asm.asmDatePickerFocusClass {
	position:relative;
}
div.asm.asmTimePickerFocusClass {
	position:relative;
}

div.asmDiv > .input_description {
	position: absolute;
	top: 8px;
	right:0;
	padding-bottom: 0.375rem;
	font-size: 10.5px;
	font-weight: 500;
	color:#858585;
	letter-spacing: -0.3px;
}

/* div - readOnly input container */
div.asmDisabled {
	background-color: inherit !important;
	padding:0 !important;
	height: fit-content !important;
}

div.asmDisabled > input {
	background-color: inherit !important;
	color: #4D5157;
	padding-bottom: 13px;
	border-bottom: 1px solid #EAECF0;
}

div.asmDisabled > textarea {
	color:#B7BBC8 !important;
	background-color: inherit !important;
	margin-left: 0 !important;
	padding-left: 0 !important;
}

div.asmDisabled > input.asmSelect {
	cursor: default !important;
}

img.asmDisabled {
	cursor: default !important;
	display: none;
}

.asmChange div.asmDisabled {
	background-color: #fff5f6 !important;
}

.asmChange div.asmDisabled > input {
	background-color: #fff5f6 !important;
}

.asmChange div.asmDisabled > textarea {
	background-color: #fff5f6 !important;
}

textarea.asmDisabled {
	background-color: inherit !important;
	color: #b7bbc8 !important;
	margin-left: 0 !important;
	padding-left: 0 !important;
}
input#colorpicker:disabled {
	background-color: inherit !important;
}
input#shp_colorpicker {
	background-color: inherit !important;
	border: none;
}

/* select */
div.asm.asmSelectFocusClass{
	gap:0;
}

div.asm.asmSelectFocusClass input {
	width:100%;
	cursor:pointer;
}

img.asmSelectIcon {
	position: relative;
	cursor: pointer;
	z-index: 10;	
}

div.asmSelect {
	display: none;
	position: relative;
	width: 100%;
}

div.asmSelect > div {
	position: absolute;
	top:4px;
	width: 100%;
	background-color: #F2F4F7;
	overflow-y: auto;
	max-height: 172px;
	font-size: 0.875rem;
	color: #21212D;
	font-weight:500;
	border-radius: 0.75rem;
	box-shadow: 0px 2px 8px 0px rgba(33, 33, 45, 0.16);
	z-index: 20;
}

div.asmSelect > div > div:first-child > div {
	padding-top: 1rem;
}

div.asmSelect > div > div:last-child > div{
	padding-bottom: 1rem;
}


div.asmSelectList > div.asmSelectText {
	background-color: #F2F4F7;
	padding: 0.625rem 1.25rem;
	cursor: pointer;
}

div.asmSelectList > div.asmSelectText:hover {
	background-color: #EAECF0;
}

div.asmSelectList > div.asmSelectValue,
div.asmSelectList > div.asmSelectIndex {
	display: none;
}

/* button basic */

.asmButton {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	margin: 0;
	padding: 0.75rem 1.5rem ;

	font-size: 0.875rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	letter-spacing: -0.42px;
	line-height: 1.375rem;

	display: inline-block;
	width: auto;
	min-height: 46px;
	border: none;
	border-radius: 12px;

	cursor: pointer;

	transition: 0.3s;

	background-color: #ed1b23;

	/* var(--bg-color); */
	color: white;
	white-space:nowrap;
}

.asmButton:hover {
	background-color: #cb020a;
	outline: 0;
}
.asmButton.item_btn_detail_location{
	background:black;
}

.asmButton:disabled {
	background-color: #fcccd1;
	cursor: default;
}

.asmButton.secondary {
	background-color: #3D4147;
}

.asmButton.secondary:hover {
	background-color: #000000;
	outline: 0;
}

.asmButton.secondary:disabled {
	background-color: #DADDE1;
}

.asmButton.tertiary {
	background-color: white;
	border: 1px solid #DADDE1;
	color: #6E7178;
}

.asmButton.tertiary:hover {
	border: 1px solid #6E7178;
}

.asmButton.tertiary:disabled {
	color: #DADDE1;
	border: 1px solid #DADDE1;
}

/* button custom */

.asmButton.choice {
	width: 7.875rem;
	padding: 12px 24px;
	height: 46px;
	background-color: #3A3B41;
	color:white;
}

.asmButton.management{
	display: flex;
	height: 46px;
	padding: 12px 20px;
	align-items: flex-start;
	border-radius: 12px;
	background: #FFF5F6;
	color: #ED1B23;
}
.asmButton.mapsave {
	/* display: flex; */
	width: 74px;
	height: 46px;
	padding: 12px 24px;
	font-size: 12px;
	color: var(--White, #FFF);
	text-align: center;
	/* Button/Default */
	font-family: "Noto Sans KR";
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 22px; /* 157.143% */
	letter-spacing: -0.42px;
}

.asmButton.middle{
	width: 6.9rem;
    padding: 12px 14px;
    font-size: 14px;
    background-color: #3D4147;
    font-weight: 700;
}

.asmButton.mapcancel{
	display: flex;
    width: 75px;
    height: 46px;
    padding: 12px 24px;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    align-items: center;
    color: #3A3B41;
    background: #FFF;
	margin-left: 10px;
	margin-right: 8px;    
	border: 1px solid #9EA4AE;
    text-align: center;
    font-family: "Noto Sans KR";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.42px;
}

.asmButton.btn_detail_location{
	display: flex;
	height: 46px;
	padding: 12px 24px;
	align-items: flex-start;
	gap: 10px;
	border-radius: 12px;
	background: var(--Grayscale-Dark, #3A3B41);
}

.asmButton.cancel {
	color: #3A3B41;
	font-size: 14px;
	text-align: center;
	display: flex;
	width: 74px;
	height: 46px;
	padding: 12px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 12px;
	border: 1px solid #DADDE1;
	background: #FFF;
	padding: 12px 20px;
	font-weight: 700;
}
.asmButton.cancel:active,
.asmButton.cancel:hover,
.asmButton.cancel:focus {
	background: #EFF0F3;
	outline: 0;
}

.asmButton.modify {
	color: #6E7178;
	font-size: 14px;
	text-align: center;
	display: flex;
	width: 74px;
	height: 46px;
	padding: 12px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 12px;
	border: 1px solid #DADDE1;
	background: #FFF;
	padding: 12px 20px;
	font-weight: 700;
}

.asmButton.modify:active,
.asmButton.modify:hover,
.asmButton.modify:focus {
	background: #EFF0F3;
	outline: 0;
}

.asmButton.Tile {
	width: 8rem;
	background-color: white;
	color: #272727;
}
.asmButton.Tile.active {
	background-color: #3396ff;
	color: white;
}
.asmButton.Tile:hover {
	background-color: #2574c9;
	color: white;
}

/* badge */
.badge {
	padding:2px 8px;
	border-radius:39px;
	font-size: 0.75rem;
	letter-spacing:-0.36px;
	line-height:17px;
	color:#797E86;
	font-weight:500;
}

/* slider */
.asmSwitch {
	position: relative;
	display: inline-block !important;
	width: 42px;
	height: 24px;
}

.asmSwitch > input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #b7bbc8;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 40px;
	margin-left: 2px;
	height: 26px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 24px;
	width: 24px;
	top: 1px;
	left: 1px;
	border:2px solid #b7bbc8;
	background-color: white;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 50%;
}

.asmSwitch > input:checked + .slider {
	background-color: #ed1b23;
}

.asmSwitch > input:checked + .slider:before {
	-webkit-transform: translateX(16px);
	-ms-transform: translateX(16px);
	transform: translateX(16px);
	border-color: #ed1b23;
}

.asmSwitch.asmDisabled .slider {
	background-color:#EFF0F3;
	cursor: default;
}

.asmSwitch.asmDisabled .slider:before {
	background-color: white;
	border-color: #EFF0F3;
}

.asmSwitch.asmDisabled > input:checked + .slider {
	background-color: #FFDDDD;
}

.asmSwitch.asmDisabled > input:checked + .slider:before {
	border-color: #FFDDDD;
}

.panelmid .asmSwitch {
	margin: 11px 0 11px;
}

.panelmid .asmSwitch.asmDisabled {
	margin: 5px 0 5px;
}



/* textarea */
div.asm.asmTextarea {
	flex-direction: column;
	gap:5px;
	padding: 1rem 1.25rem;
}

div.asm > textarea.asm {
	outline: none;
	resize: none;
	border: none;
	background-color: transparent;
	padding:0;
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.42px;
	max-height:290px;
}

/* radio */
.asmRadioContainer {
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.asmRadioContainer input {
	display: none;
}

.asmRadioContainer .asmRadioMark {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-color: #d3d7dc;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
}

.asmRadioContainer:hover .asmRadioMark {
	background-color: #ccc;
}

.asmRadioContainer input:checked ~ .asmRadioMark {
	background-color: var(--bg-color);
}

.asmRadioContainer input:checked ~ .asmRadioMark {
	background-color: #ed1b23;
}

.asmRadioContainer input:checked ~ .asmRadioMark:after {
	content: "";
	width: 12px;
	height: 12px;
	background-color: #ffffff;
	position: absolute;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* check */
.asmCheckContainer {
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.asmCheckContainer input {
	display: none;
}

.asmCheckContainer .asmCheckMark {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-color: #d3d7dc;
	position: absolute;
	left: 0px;
	top: 0px;
	border-radius: 35%;
}

.asmCheckContainer:hover .asmCheckMark {
	background-color: #ccc;
}

.asmCheckContainer input:checked ~ .asmCheckMark {
	background-color: var(--bg-color);
}

.asmCheckContainer input:checked ~ .asmCheckMark {
	background-color: #ed1b23;
}

.asmCheckContainer input:checked ~ .asmCheckMark:after {
	content: "";
	width: 12px;
	height: 12px;
	background-color: #ffffff;
	position: absolute;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* datepiceker */
.asmDatePicker {
	width: 20rem;
	height: 22rem;
	background-color: white;
	z-index: 101;
	position: relative;
	border: 1px solid #d3d7dc;
	border-radius: 0.9rem;
	display: none;
}

.asmDatePickerShow {
	display: table;
	position:absolute;
	top:54px;
	left:0;
	box-shadow: 6px 6px 16px 0px rgba(17, 17, 17, 0.1);
}

.selectBoxAlignRight > .asmDatePickerShow {
	left:unset;
	right:0;
}

.asmDatePicker > .datePickerTop {
	width: 100%;
	height: 18%;
	background-color: #fff;
	border-radius: 0.9rem;
	display: flex;
}

.datePickerTop > .preArrow {
	width: 20%;
	height: 100%;
}

.datePickerTop > .YM {
	width: 60%;
	height: 100%;
	font-style: normal;
	font-weight: bold;
	font-size: 1rem;
}

.datePickerTop > .nextArrow {
	width: 20%;
	height: 100%;
}

.preArrow,
.YM,
.nextArrow {
	display: block;
	text-align: center;
	margin-top: 5%;
}

.datePickerTop > .preArrow > img,
.datePickerTop > .nextArrow > img {
	width: 50%;
	height: 50%;
	cursor: pointer;
}

.asmDatePicker > .middleLine {
	width: 90%;
	margin-left: 5%;
	border-bottom: 1px solid #d3d7dc;
}

.asmDatePicker > .datePickerBottom {
	width: 90%;
	height: 60%;
	margin-left: 5%;
	border-radius: 0.9rem;
}

.datePickerBottom > .dayOfTheWeek {
	width: 100%;
	height: 10%;
	margin-top: 4%;
	display: flex;
	justify-content: space-around;
	font-size: small;
	margin-bottom: 4%;
}

.datePickerBottom > .dayOfTheWeek > .saturday {
	color: #0067a3;
}

.datePickerBottom > .dayOfTheWeek > .sunday {
	color: #f00;
}

.datePickerBottom > .days {
	width: 100%;
	height: 80%;
}

.datePickerBottom > .days > .week {
	width: 100%;
	height: 17%;
	display: flex;
	justify-content: space-around;
}

.week > .range {
	height: 1.5rem;
	flex-grow: 1;
	text-align: -webkit-center;
}

.week > .range > div {
	width: 1.5rem;
	height: 1.5rem;
	text-align: center;
	padding-top: 0.125rem;
	cursor: pointer;
	font-size: small;
}

.week > .range > div:hover {
	color: #fff;
	background-color: #6E7178;
	border-radius: 50%;
}

.week > .range > .notThisMonth {
	color: #b7bbc8 !important;
}

.week > .range > .today {
	color: #fff;
	background-color: #ED1B23 !important;
	border-radius: 50%;
}

.week > .range > .selected {
	color: #fff !important;
	background-color: #3D4147;
	border-radius: 50%;
}

.week > .range > .saturday {
	color: #0067a3;
}

.week > .range > .sunday {
	color: #f00;
}

.week > .range > div > .fullDate {
	display: none;
}

.week > .selectedBack {
	background-color: #fdd;
	height: 1.5rem;
}

.week > .selectedBackLeft {
	background: linear-gradient(90deg, #fff 50%, #fdd 50%);
	height: 1.5rem;
}

.week > .selectedBackRight {
	background: linear-gradient(90deg, #fdd 50%, #fff 50%);
	height: 1.5rem;
}

.asmDatePicker > .datePickerBtn {
	width: 84%;
	height: 18%;
	margin-left: 8%;
	border-radius: 0.9rem;
}

.datePickerBtn > .init {
	float: left;
	width: 20%;
	height: 70%;
	color: #9ea4ae;
	padding-top: 4%;
	font-size: small;
	cursor: pointer;
}

.datePickerBtn > .save {
	float: right;
	width: 74px;
	height: 70%;
	color: #fff;
	text-align: center;
	padding-top: 4%;
	background-color: #ed1b23;
	font-size: small;
	border-radius: 0.875rem;
	cursor: pointer;
}

.no_selectRow {
	background-image: url(../img/Empty_message.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: 22rem;
}
.no_dataRow {
	background-image: url(../img/Empty_data.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: 18.75rem;
}

/* timepicker */
.asmTimePicker {
	left: -3px;
	width: 16rem;
	height: 14rem;
	background-color: white;
	z-index: 101;
	position: relative;
	border: 1px solid #d3d7dc;
	border-radius: 0.9rem;
	display: none;
}

.asmTimePickerShow {
	display: block;
	position: absolute;
	top: 54px;
}

.asmTimePicker > .timePicker {
	width: 90%;
	height: 80%;
	margin-left: 5%;
	border-radius: 0.9rem;
	display: flex;
}

.timePicker img {
	width: 75%;
	border: 1px solid #d3d7dc;
	border-radius: 20%;
}

.timePicker img:hover {
	cursor: pointer;
}

.timePicker .nowTime {
	width: 75%;
	height: 2.5rem;
	border: 1px solid #d3d7dc;
	border-radius: 20%;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.timePicker .nowTime input {
	border: none;
	width: 60%;
	outline: none;
	margin-top: 0.35rem;
}

.timePicker .nowTime input:active {
	outline: none;
}

.timePicker > .startTime {
	width: 48%;
	height: 100%;
	display: flex;
}

.timePicker > .middleColon {
	height: 100%;
	font-size: xx-large;
	font-weight: bold;
	margin-top: 4rem;
}

.timePicker > .endTime {
	width: 48%;
	height: 100%;
	display: flex;
}

.timePicker > .startTime > div {
	place-self: center;
	text-align: -webkit-center;
}

.timePicker > .endTime > div {
	place-self: center;
	text-align: -webkit-center;
}

.asmTimePicker > .timePickerBtn {
	width: 82%;
	height: 18%;
	margin-left: 9%;
	border-radius: 0.9rem;
}

.timePickerBtn > .init {
	float: left;
	width: 20%;
	height: 70%;
	color: #9ea4ae;
	padding-top: 2%;
	font-size: small;
	cursor: pointer;
}

.timePickerBtn > .save {
	float: right;
	width: 40%;
	height: 70%;
	color: #fff;
	text-align: center;
	padding-top: 2%;
	background-color: #ed1b23;
	font-size: small;
	border-radius: 0.875rem;
	cursor: pointer;
}

/*table*/
.asmTable {
	font-size: 0.825rem;
	width: 100%;
}

.asmTable thead tr {
	border-top: 1px solid #d3d7dc;
	border-bottom: 1px solid #d3d7dc;
	color: #b7bbc8;
	text-align: left;
	font-weight: bold;
	letter-spacing: -0.03em;
}

.asmTable th,
.asmTable td {
	padding: 1vw 1vh;
}

.asmTable td {
	border-bottom: 1px solid #d3d7dc;
	color: #797e86;
}

/*table*/
.modal-header{
	border: none !important;
}
/* Required input, modifying, required -> require */
body *{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input.secure-font {
	-webkit-text-security:disc;
}
#div_txt_pw img {
	cursor: pointer;
	position: relative;
  left: 0.5rem;
}

/* dropdown css 150px center에서 수정*/
.dropdown-menu {
    z-index:9999!important;
    min-width:120px;
    border-radius:10px;
    box-shadow:rgb(17 17 17 / 14%) 0px 6px 16px;
    border:none;
		text-align: left;
		padding: 8px;
}

.dropdown-menu > li {
	margin-bottom: 8px;
}

.dropdown-menu > li:last-child{
	margin-bottom: 0;
}

.dropdown-menu > li > a {
	padding: 10px;
	line-height: 21px;
	font-size:14px;
	font-weight:400;
}

.dropdown-item:hover {
    color: #06060A;
    background: var(--Grayscale-Background-gray, #F7F8F9);
	border-radius: 12px;
	cursor: pointer;
    /* text-align: center; */
}

#item_drop_down {
	background: none;
	background-image: url("/img/dote.png");
    /* background-size: contain; */
    background-repeat: no-repeat;
    background-position: center;
	box-shadow: none!important;
	color: #797E86;
	/* padding:none; */
	padding:20px;
	background-size: 24px;
	/* height: 100%; */
}

#item_drop_down.likeGBON {
	background: none;
	background-image: url("/img/horizontal_mini.png");
    /* background-size: contain; */
    background-repeat: no-repeat;
    background-position: center;
	box-shadow: none!important;
	color: #797E86;
	padding:20px;
	/* height: 24px; */
	background-size: 24px;
	/* width: 24px; */
	/* margin-right: 28px; */
}

.asm.content::-webkit-scrollbar {
	width: 10px;
}
.asm.content::-webkit-scrollbar-thumb {
	background-color: grey;
	border-radius: 10px;
	background-clip: padding-box;
	border: 2px solid transparent;
}
#btn_delete{
	display: none;
}

.toastui-editor-contents::-webkit-scrollbar {
	width: 10px;
}
.toastui-editor-contents::-webkit-scrollbar-thumb {
	background-color: grey;
	border-radius: 10px;
	background-clip: padding-box;
	border: 2px solid transparent;
}
div.asmSelect div::-webkit-scrollbar {
	width: 10px;
}
div.asmSelect div::-webkit-scrollbar-thumb {
	background-color: grey;
	border-radius: 10px;
	background-clip: padding-box;
	border: 2px solid transparent;
}

.asmTuiCell .asmPassword {
  border: none;
}

.asmTuiCell .asmDetailBtn {
  text-align: center;
  text-decoration: underline;
}

.asmTuiCell .asmDetailBtn:hover {
  cursor: pointer;
}

.asmTuiCell .asmDetailBtn input {
  display: none;
}

.asmTuiCell .asmPrintBtn {
  text-align: center;
  text-decoration: underline;
}

.asmTuiCell .asmPrintBtn:hover {
  cursor: pointer;
}

.asmTuiCell .asmPrintBtn input {
  display: none;
}

.asmTuiCell .asmSwitch {
  position: relative;
  display: inline-block;
  height: 34px;
  margin-left: 20%;
}

.asmTuiCell .asmSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.asmTuiCell .asmSwitch input:checked + .asmSlider {
  background-color: #1e3373;
}

.asmTuiCell .asmSwitch input:checked + .asmSlider::before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

.asmTuiCell .asmSwitch input:focus + .asmSlider {
  -webkit-box-shadow: 0 0 1px #1e3373;
          box-shadow: 0 0 1px #1e3373;
}

.asmTuiCell .asmSwitch .asmSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.asmTuiCell .asmSwitch .asmSlider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.loadingScreen {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #f3f4f7a6;
	border-radius: 12px;
	z-index: 2000;
	display: none; 
 } 

.loadingScreen.active {
	display: block;
}
.loadingScreen.active > .center {
	width: 200px;
	height: 200px;
	position: absolute;
	top: calc(50% - 100px);
	left: calc(50% - 100px);
	text-align: center;
}

.loadingScreen.active > .center > img {
	margin-top: 10px;
}

.tabArea {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	/* temporary padding value */
	padding:0 20px 1rem;
	margin:0;
	display:flex;
	gap: 6px;
}

.tabArea div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
	padding: 6px 12px;
	line-height: 22px;
	font-size: 14px;
	font-weight: 700; 
  color: #6E7178;
  text-align: center;
	border: 1px solid #DADDE1;
	border-radius: 8px;
	letter-spacing:-0.48px;
	transition: 0.3s;
}

.tabArea div:hover {
	border: 1px solid #6E7178;
  font-weight: bold;
  cursor: pointer;
}

.tabArea div.active {
	color: #fff;
	border:1px solid #6E7178;
	background-color: #6E7178;
}
.tabArea div > p {
  margin-top: 0;
  margin-left: 1.25%;
}

.upsearch > .singleDate {
	max-width:11.25rem
}
div.noneInput{
	outline: 1px dashed red;
}

/* sunxno 추가 */

.modal-title{
	color: var(--Grayscale-Black, #06060A);
/* Sub-title/Bold */
	font-family: "Noto Sans KR";
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -1px;
}
.asm.modifyFlag{
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	margin-top: 20px;
}
.text_box {
	position:relative; 
	display:inline-block; 
	width:100%;
}
.text_box textarea {
	width:100%; 
	height:152px; 
	color:#666; 
	font-family:"ht_r"; 
	font-size:18px; 
	line-height:28px; 
	padding:20px; 
	border:1px solid #e4dcd3; 
	outline:0; 
	resize:none
}
.asmCount {
	display:flex;
	width:100%;
	height:17px;
	align-items:flex-start;
	justify-content: flex-end;
	color:#A4A9B1; 
	font-family:"ht_r"; 
	font-size:12px;
	position: relative;
	line-height:15px;
}

.asmCount > span { 
	line-height:12.5px;
}

.asmDisabled .asmCount {
	display:none;
}

#txt_remark.long{
    height: 140px;
}

  .form-control{
	display: flex;
	padding: 12px 24px 13px 20px;
	margin: 0.2rem;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	color: var(--Grayscale-Dark, #3A3B41);
	font-family: "Noto Sans KR";
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.42px;
	width: 100%;
	border-radius: 12px;
	border: none;
	background: var(--Grayscale-Background-gray, #F7F8F9);
}


.panelmid > div{
	/* display: flex;
	flex-direction: column;
	align-items: flex-start; */
	/* gap: 12px; */
	margin-bottom: 32px;
	align-self: stretch;
}

.panelmid > .asmDisabled, .panelmid > .row{
	display: flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content: space-between;
	margin-bottom: 32px;
	margin-right: 0;
	margin-left:0;
	margin-top:0;
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
}

.panelmid > .row > .col-md-6{
	padding: 0;
	margin: 0;
	width: calc(50% - 10px);
}

.panelmid > .row > .col-md-6 .row_mb {
	margin-bottom: 0 !important;
}

.modal-header > button.btn-close{
	display: none;
}
.modal-header > button.btn-close.xbutton{
	display: block;
}
/* mypagePanel수정 */
#mypagePanel{
	z-index: 9999;
	width: 232px;
	height: auto;
	right: 32px;
	top:60px;
	background-color: rgb(255, 255, 255);
	box-shadow: rgba(17, 17, 17, 0.14) 0px 6px 16px;
	border-radius: 12px;
	position: absolute;
	padding: 8px 10px 5px 18px;
}

#searchPanel{
	margin:0 !important;
	right: 154px !important;
	top: 60px;
}

#alarmPanel {
	margin: 0 !important;
	right: 100px !important;
	top: 60px;
}

/*시간 수정*/
#txt_mypageRecent{
	font-size: 12px;
	line-height: 18px;
	font-weight: 700;
	color: #797E86;
	margin-bottom: 13px;
	/* margin-left: 13px; */
}
/* 최근접속 이미지 */
#img_mypageRecent > img{
	width: 62px; 
	height: 22px; 
	margin-bottom:10px;
}

/*지비관리자txt 수정*/
#mypagePanel .infoBold {
	font-weight: bold;
	font-size: 16px;
	line-height: 24px;
	margin-left: 5px;
	overflow: hidden; 
	white-space: nowrap; 
	margin-bottom: 8px; 
	text-overflow: ellipsis;
	padding-top:10px;
	/* padding:10px 0 5px 10px; */
}

#mypagePanel .infosmall {
	font-weight: bold;
	font-size: 10px;
	line-height: 24px;
	margin-left: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-top: 10px;
	color: #797E86;
}

/* hr */
#mypagePanel .row > hr{
	margin: 9px; 
	width: calc(100% - 18px);
}

.info_select {
	background: #fff5f6;
}
/* mypage btn */
#mypageBtn{
	width: 46px; 
	height: 100%; 
	border-radius: 12px; 
	margin-left: 16px;
}
/* mypage 하단 */
.mypageBtn:hover {
	background: #f7f8f9;
	border-radius: 12px;
	color: #06060A;
}
/* mypage 하단 폰트 */
.mypageBtn {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 10px;
	flex: none;
	width: 95%;
	order: 3;
	align-self: stretch;
	flex-grow: 0;
	margin: 5px 4px;
	cursor: pointer;
	color: #797E86;
	/* font: bold; */
}
/* mypagetxt */
.mypageTxt {
	font-weight: normal;
	font-size: 14px;
	line-height: 21px;
	cursor: pointer;
}
.topBtn {
	width: 100%; 
	height: 100%; 
	display: flex; 
	justify-content: center; 
	align-items: center;
  }


/* #auth_modal .container_modal {
	width: 100%;
	background-color: white;
	display: grid;
	align-items: center;
	justify-items: start;
	grid-template-columns: 1fr;
	grid-template-rows: 2fr;
	height: 100%;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	padding:8px 24px 20px 24px !important;
} */

/* #auth_modal .modal-dialog {
    display: flex;
    justify-content: center;
} */
/* #auth_modal .modal-header > .btn-close {
    display: none;
} */
#auth_modal .modal-content {
	/* border-radius: 12px;
	display: flex;
    width: 420px;
    padding: 32px 20px 0px 20px;
    flex-direction: column;
    align-items: flex-start; */
    height: 504px;
	/* position: relative;
    bottom: 12rem;
    right: 6rem; */
}

/* #auth_modal .modal-title{ 
    font-family: Noto Sans KR;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
    color: #06060A;
} */
/* #auth_modal .btn-close{
    padding-top: 1;
}
#auth_modal .modal-header{
	padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    display: flex;
    justify-content: space-around;
}
#auth_modal .modal-footer{
	width: 100%;
	display: flex;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
	padding: 24px 0px;
} */

	.mainContentBox {
		display:flex;
		padding: 1.25rem;
		width:100%;
		height:100%;
		background-color:#fff;
		border-radius: 0.75rem;
		box-shadow: 0px 2px 8px 0px rgba(33, 33, 45, 0.16);
	}
	
	.asmButton.middle.regist{
		background-color: #3D4147;
		width: 8.875rem !important;
	}

	.asmButton .longModify {
		color: #6E7178;
		font-size: 14px;
		text-align: center;
		display: flex;
		width: 6.2rem;
		height: 46px;
		padding: 12px 24px;
		justify-content: center;
		align-items: center;
		gap: 10px;
		border-radius: 12px;
		border: 1px solid #DADDE1;
		background: #FFF;
		padding: 12px 20px;
		font-weight: 700;
	}
	
	#item_btn_updateUser{
		width: 7rem !important;
	}

	#div_txt_pwck img {
		cursor: pointer;
		position: relative;
	  left: 0.5rem;
	}
	.err_msg {
		color: #F34040;
		font-size:12px;
		font-weight: 500;
		font-family: "Noto Sans KR";
		top: 108%;
		left: 5px;
		display: none;
		margin-left: 1rem;
	}
	
	.relative {
		position:relative;
	}

	.absolute {
		position: absolute;
	}

	#item_btn_refresh > img {
		width:20px;
		height:20px;
	}
	#txt_faceCheck{
		padding-bottom: 0.375rem;
		font-weight: 700;
		font-size: 0.875rem;
		line-height: 150%;
		letter-spacing: -0.035px;
		color: #21212D;
	}

	.faceCheck{
		margin-bottom: 0px !important;
		padding-bottom: 0.375rem;
		font-weight: 700;
		font-size: 0.875rem;
		line-height: 150%;
		letter-spacing: -0.035px;
		color: #21212D;
	}

	#logPanel{
		z-index: 9999;
		width: 800px;
		height: fit-content;
		background-color: #ffffff;
		position: absolute;
		top: 80px;
		left: 50%;
		transform: translateX(-50%);
		display: none;
		padding: 12px;
		border-radius: 12px;
		box-shadow: 0px 6px 16px rgba(17, 17, 17, 0.14);
	}