.modal-base {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(3px);
	z-index: 100;
}
.modal-base-on {
	animation: modal-base-on 0.3s both linear 1;
}
@keyframes modal-base-on {
	0%   {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.modal-base-off {
	animation: modal-base-off 0.3s both linear 1;
}
@keyframes modal-base-off {
	0%   {
		opacity: 1;
	}
	100% {
		opacity: 0;
		display: none;
	}
}
.modal-base .modal-frame {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border-radius: 4px;
	background: rgba(237, 237, 237, 1);
	padding: 10px;
	box-shadow: 0 4px 6px rgba(125, 125, 125, 0.3);
}
.modal-base .modal-frame .msg {
	font-size: 1rem;
}
.modal-base .modal-frame .divider {
	width: 80px;
	height: 1px;
	background: #333a3b;
}
.modal-base .modal-frame .btn-container {
	display: flex;
	gap: 10px;
}
.modal-base .modal-frame .btn-container .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	background: #333a3b;
	color: white;
	letter-spacing: 0.05rem;
	width: 120px;
	height: 30px;
	font-size: 0.6rem;
}
.modal-base .modal-frame .btn-container .gray {
	background: #687678;
}

.modal-base .modal-select-frame {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border-radius: 4px;
	background: rgba(237, 237, 237, 1);
	padding: 10px;
	box-shadow: 0 4px 6px rgba(125, 125, 125, 0.3);
	max-width: calc(100vw - 40px);
}
.modal-base .modal-select-frame .msg {
	font-size: 1rem;
	padding: 0 10px;
}
.modal-base .modal-select-frame .divider {
	width: 80px;
	height: 1px;
	background: #333a3b;
}
.modal-base .modal-select-frame .container {
	overflow-x: hidden;
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 200px);
	width: 100%;
	padding-bottom: 0px;
}
.modal-base .modal-select-frame .container .item {
	font-size: 1rem;
	padding: 0 10px;
	line-height: 40px;
	width: 100%;
	border-bottom: 1px solid rgba(51, 58, 59, 0.2);
}