.bn-dialog .br-modal__window {
	overflow: hidden;
}

.bn-dialog .br-modal__close-button {
	margin: 4px 0;
	z-index: 1;
}

.bn-dialog__wrapper {
	box-sizing: border-box;
	padding: 0;
	display: grid;
	grid-template-rows: max-content auto max-content;
	max-height: inherit;
}

.bn-dialog__title {
	border-bottom: lightgrey 1px solid;
	position: sticky;
	top: 0;
	padding: 8px;
	font-weight: bold;
	font-size: 20px;
	background: white;
	z-index: 1;
}

.bn-dialog__content {
	padding: 8px;
}

.bn-dialog__buttons {
	border-top: lightgrey 1px solid;
	text-align: right;
	position: sticky;
	bottom: 0;
	padding: 8px;
	font-weight: bold;
	font-size: 20px;
	background: white;
	z-index: 1;
}

.bn-dialog__buttons > *:not(:last-child) {
	margin: 0 8px;
}