/* MODALS */

body.modal-open {
overflow: hidden !important;
}

#accessCodeModal .modal-dialog {
max-width: 420px;
margin: auto;
overflow:hidden;
}

#accessCodeModal .modal-content {
border-radius: 14px;
}

#accessCodeModal .code-input {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

/* SHARING MODAL */

#shareModal .modal-dialog{
	overflow:hidden;
	width:280px;
}

/* DONATION PAGE USER FORM */
/* Increase modal width */
.modal-dialog {
	width: 90%; /* Adjust as needed */
	max-width: 900px; /* Optional: limit the maximum width */
	max-height:80%;
	margin: auto; /* Center horizontally */
	position:relative;
	overflow:scroll;
	border-radius: 16px;
}
/* Vertically center the modal */
.modal {

}

.modal.show{

}

.modal.fade.in{

}

.modal-content{
	box-shadow: var(--standard-shadow);
	
}
/* Fix scrolling when content overflows */
.modal-dialog {
	margin: 0;

}
.modal.fade.in .modal-dialog{
	z-index:100;
}
.modal-header,
.modal-body{
	padding:20px;
}