/***************************
Bootstrap 5.3 overrides
***************************/

/* HR */
hr {
	opacity: 1;
}

/* List Group */
.list-group {
	border-radius: var(--bs-border-radius);
}
.list-group .list-group-item {
	padding: 0.75rem;
}
.list-group .list-group-item a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all .2s ease-in-out;
}
.list-group .list-group-item a:hover {
	transform: translateX(0.25rem);
}


/* Modal */
.modal .modal-content .modal-header {
	background: transparent;
	border-bottom: 1px solid var(--bs-gray-800);
}
.modal .modal-content .modal-header h2 {
	margin: 0;
}
.modal-backdrop {
	background: linear-gradient(45deg, #B00D30, #600618);
}
.modal-backdrop.show {
	opacity: 0.95;
}
.modal .modal-dialog {
	border-radius: 0.25rem;
}
.modal .modal-content,
.modal .modal-dialog {
	border: none;
}

/* Close Button */
.close {
	float: right;
	font-size: 2.5rem;
	font-weight: 300;
	line-height: 1;
	color: var(--bs-black);
	opacity: 0.5;
	filter: alpha(opacity=80);
	transition: all .2s ease-in-out;
}
.close:hover,
.close:focus {
	text-decoration: none;
	cursor: pointer;
	opacity: 1;
	filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* Well */
.well {
  min-height: 1.25rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: var(--bs-gray-100);
  border: 1px solid var(--bs-gray-100);
  border-radius: var(--bs-border-radius-sm);
}
.well p:last-child {
	margin-bottom:0;
}
.well blockquote {
    
}
.well-lg {
  padding: 1.75rem;
  border-radius: 0;
}
.well-sm {
  padding: 0.75rem;
  border-radius: 0;
}
.well-form {
  padding: 0.75rem;
  border: 1px solid var(--bs-gray-200);
}
.well-form label {
  font-weight: bold;
}