a, a:visited {
	text-decoration: underline;
}

*, ::after, ::before {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

.htb-btn {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.htb-btn:focus, .htb-btn:hover {
	text-decoration: none;
}

.htb-btn.htb-focus, .htb-btn:focus {
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.htb-btn.disabled, .htb-btn:disabled {
	opacity: .65;
}

.htb-btn:not([disabled]):not(.disabled).htb-active, .htb-btn:not([disabled]):not(.htb-disabled):active {
	background-image: none;
}

@media (min-width:576px) {
	@-webkit-keyframes progress-bar-stripes {
		from {
			background-position: 1rem 0;
		}
		
		to {
			background-position: 0 0;
		}
	}
	
	@keyframes progress-bar-stripes {
		from {
			background-position: 1rem 0;
		}
		
		to {
			background-position: 0 0;
		}
	}
}