.modal {
	display: flex;
	justify-content: center;
	align-items: center;

	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;

	width: 100%;
	height: 100%;

	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);

	opacity: 0;
	transition: opacity 200ms ease-out;
}

.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 40px;
	border: 1px solid #888;
	width: 75%;

	border-radius: 20px;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	font-weight: bold;

	font-size: 7dvw;

	border-bottom: 3px solid gainsboro;
}

.modal-body {
	text-align: center;

	margin-bottom: 40px;

	font-size: 6dvw;
}

.modal-footer {
	display: flex;
	justify-content: flex-end;
}

.btn {
	padding: 10px 20px;
	border: none;
	border-radius: 15px;
	cursor: pointer;

	font-size: 4dvw;
}

.btn-primary {
	color: white;
	background-color: #007bff;

	font-weight: bold;

	transition: background-color 200ms ease-out;
}

.btn-primary:hover {
	background-color: #0056b3;
}

.btn-primary:active {
	background-color: #004286;
}

.btn-primary:focus {
	outline: none;
}

.btn-primary:disabled {
	background-color: #6c757d;
}

.btn-primary:disabled:hover {
	background-color: #6c757d;
}

.btn-primary:disabled:active {
	background-color: #6c757d;
}

.btn-primary:disabled:focus {
	outline: none;
}
