html {
	font-size: 100%;
}

body {
	max-width: inherit;
	margin: inherit;
	padding: inherit;
}

button {
	background-image: inherit;
	height: fit-content;
	padding: inherit;
	position: relative;
	bottom: -25px;
}

button:focus {
	border: 0px solid transparent;
	background: #007bff;
}

.row {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	gap: 1rem;
}

.card {
	position: relative;
	flex: 0 1 32%;
	cursor: pointer;
}

.card:hover {
	border-color: #007bff;
	top: -2px;
	left: -2px;
}

.card-title {
	font-size: 1rem !important;
	font-weight: bold !important;
}

.card-text {
	display: block;
	font-size: 0.9rem !important;
}

input {
	padding: 0.375rem !important;
}

#loading {
	vertical-align: middle;
	margin: 0 0.5rem 0 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(0,123,255,.3);
	border-radius: 50%;
	border-top-color: #007bff;
	animation: spin 1s ease-in-out infinite;
	-webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin { to { -webkit-transform: rotate(360deg); } }
@-webkit-keyframes spin { to { -webkit-transform: rotate(360deg); } }