.navbar-nav .nav-link {
	color: white;
	border-bottom: 2px solid transparent;
	border-radius: 5px;
	padding: 8px 8px;
	transition: background 0.5s ease;
}

.navbar-nav .nav-link:hover {
	color: white;
	border-bottom: 2px solid green;
	background: #383c3f;
}

.custom-checkbox-wrapper {
	display: inline-block;
	position: relative;
	cursor: pointer;
}

.custom-checkbox-inner {
	width: 2.5rem;
	height: 1rem;
	box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 6%);
	background: #dbe0e0;
}

.custom-checkbox-wrapper input[type='checkbox']:checked ~ .toggle-dot {
	left: 1.25rem;
	background-color: #292a2f !important;
}

.custom-checkbox-wrapper .toggle-dot {
	position: absolute;
	background-color: var(--bs-gray-200) !important;
	top: -0.25rem;
	left: -0.25rem;
	width: 1.5rem;
	height: 1.5rem;
	/* transition: all .3s ease-in-out; */
}

.custom-checkbox-wrapper input[type="checkbox"] {
	display: none;
}

.bi {
	width: 1em;
	height: 1em;
	vertical-align: -.125em;
	fill: currentcolor
}