.bm-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
	z-index: 100001;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.bm-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 15px;
	width: 60%;
	height: 95%;
	max-height: 95%;
	background-color: #fefefe;
	border: 1px solid #888;
	border-radius: 10px;
	flex-direction: column;
	overflow: auto;
}
@media (max-width: 700px) {
	.bm-modal {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 95%;
		height: 95%;
		max-height: 95%;
	}
}
.bm-modal-header {
	position: sticky;
	top: 10px;
}
.bm-modal-content {
	padding: 16px;
	overflow-y: auto;
	flex-grow: 1;
	animation: fadeIn 0.3s ease-out;
}
.modal-open {
	text-decoration: underline;
	text-align: center;
}
.close-button {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	font-weight: bold;
	text-decoration: none;
	color: #242424;
	background-color: #ccc;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}