html {
	font-size: 14px;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	margin-bottom: 60px;
}


.link-btn {
	padding: 4px 8px;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color .2s ease;
}

	.link-btn:hover {
		background-color: rgba(0, 0, 0, 0.08);
	}

.nav-btn {
	padding: 6px 14px;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color .2s ease;
}

	.nav-btn:hover {
		background-color: rgba(0, 0, 0, 0.08);
	}

	.nav-btn::before {
		content: "";
		display: inline-block;
		width: 8px;
		height: 8px;
		margin-right: 8px;
		border-radius: 50%;
		background-color: #6c757d;
		transition: 0.2s ease;
	}

.nav-menu {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-left: 0;
	list-style: none;
}
