input {
    font-size: 14px;
}

input::placeholder {
    font-size: 14px;
    color: #999;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.modal-wrap * {
	color: #333;
	word-break: keep-all;
  font-size: 14px;
}

.modal-wrap input[type="checkbox"] {
  appearance: auto; /* 기본 체크 표시 복원 */
  -webkit-appearance: auto;
  accent-color: #ed5c23; /* 체크 색상 지정 */
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.primary {
	color: #ed5c23 !important;
}

.bg-primary {
	background-color: #ed5c23 !important;
}

.bg-black {
  background-color: #181818;
}

.bg-cancel {
    background: #dbdbdb !important;
    color: #666 !important;
}

.modal-wrap {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
}

.modal-wrap.open {
	display: block;
}

.modal-wrap .overlay {
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0,  0.5);
}

.modal-wrap .modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	max-width: 90%;
    min-width: 332px;
    width: max-content;
	height: fit-content;
	max-height: 86vh;
	display: block;
	border: 0;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
    flex-direction: column;
}

.modal-wrap .modal .modal-top {
    padding: 24px 24px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-title {
	width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.modal-subtitle {
    color: #4D4D4D;
    font-size: 14px;
}

.modal-title.center {
	justify-content: center;
}

.modal-wrap .modal .close-btn {
	position: absolute;
	cursor: pointer;
    top: 16px;
    right: 16px;
}

.modal-wrap .modal .close-btn img {
	width: 16px;
}

.modal-wrap .modal .scroll {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}

.modal-wrap .modal .modal-con {
	padding: 24px;
}

.modal-wrap .modal .modal-bottom {
padding: 0 24px 24px;
  display: flex;
  gap: 10px;
}

.modal-wrap .modal .modal-bottom button {
	font-size: 15px;
	font-weight: 500;
}

.modal-wrap .modal .modal-bottom button  {
	background-color: #222;
	color: #fff;
	width: 100%;
	height: 48px;
	border-radius: 7px;
	border: 0;
}


.modal-wrap .modal .modal-bottom button.cancel {
    background: #fff;
    border: 1px solid #CBCFD7;
    color: #4D4D4D;
}

.modal-wrap .modal .modal-bottom button.confirm {
    background: #ed5c23;
    color: #fff;
}

/* XR회의 입장 시 비밀번호 모달 */
.modla-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
}

.icon_lock {
    width: 36px;
    height: 36px;
    background-color: #FFEEE6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.icon_lock img {
    width: 30px;
    height: 30px;
    filter: invert(61%) sepia(64%) saturate(2783%) hue-rotate(332deg) brightness(99%) contrast(106%);
    border-radius: 50px;
}

input[type="password"].xr_entrance_pw {
    width: 100%;
    height: 44px;
    min-height: 44px;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid #CBCFD7;
}

input[type="password"].xr_entrance_pw:hover {
    border: 1px solid #ed5c23;
}

.pw-field .error-msg {
  display: none;
  margin-top: 6px;
  font-size: 14px;
  color: #e53935;
}

.pw-field.is-error .error-msg {
  display: block;
}

.pw-field.is-error .xr_entrance_pw {
  border-color: #e53935;
}