/* modal */

.modal-content {
	padding: 10px 10px;
}

.modal-header {
	border-bottom: none;
}

.modal-header .btn-close {
	font-size: 22px;
	margin-top: -10px;
}

/* */

.modal-dialog-scrollable .modal-body {
	margin-bottom: 25px;
	padding-bottom: 0;
}

.modal-body::-webkit-scrollbar {
	width: 12px;
}

.modal-body::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.modal-body::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 8px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
	background: #0d6efd;
}

/* ------------------------------------------------------------------------------------ */
/* responsive */

@media (width <= 1024px) {

	.modal {
		--bs-modal-margin: 1rem;
	}

	.modal-dialog-scrollable .modal-body {
		margin-bottom: 18px;
	}

	.modal-content {
		padding: 4px 4px;
	}

}