#app-header {
	position: sticky;
	z-index: var(--z-index-app-header);
	top: 0;
	background: #fff;
	box-shadow: 0 0 .5rem 0 rgba(0, 0, 0, 0.15);
}

.app-header-content {
	position: relative;
	padding: 1.5rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;

	transition: padding 200ms linear;
}

/* =============================== */

.app-branding {
	line-height: 1;
}

@media (min-width: 992px) {
	.app-branding {
		margin-right: auto;
	}
	
}

.app-branding a {
	display: block;
}

.app-branding img {
	display: block;
	height: auto;
	width: 183px;
}

@media (min-width: 576px) {
	.app-branding img {
		width: auto;
		height: 50px;
		transition: height 200ms linear;
	}
}

/* =============================== */

.app-actions {
	order: -1;
	display: flex;
	justify-content: flex-start;
	width: 40px;
	flex-shrink: 0;
}

@media (min-width: 992px) {
	.app-actions {
		order: unset;
		width: auto;
		flex-shrink: unset;
	}
}