.modal {
    width: min(32rem, calc(100% - 2rem));
    max-height: calc(100vh - 2rem);
    padding: 0;
    border: 0;
    margin: auto;
    box-sizing: border-box;
    background: transparent;
  }

.modal::backdrop {
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-inner {
	box-sizing: border-box;
	max-height: calc(100vh - 2rem);
	overflow-y: auto;
	padding: 1.5rem;
	background-color: #fff;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	position: relative;
	text-align: left;
}

.modal-title {
	text-align: center;
}

.modal-close {
	cursor: pointer;
	position: absolute;
	top: 16px;
	right: 16px;
	border: 0;
	background-color: transparent;
	outline: none;
	font-size: 20px;
}