@import 'header-type-1';
@import 'header-type-2';
@import 'header-top-bar';
@import 'header-mobile';

.site-header {
	background: var(--headerBackground);
	box-shadow: 0px 30px 90px 0px var(--headerShadow);
}

// Logo
.site-branding {
	.custom-logo-link {
		display: flex;
	}

	.custom-logo {
		width: auto;
		max-height: var(--logoMaxHeight);
	}
}

.site-title {
	margin: 0;
}

.special-elements {
	display: flex;
	align-items: center;

	> * {
		&:not(:last-child) {
			margin-right: 15px;
		}
	}

	&:before {
		display: none;
		content: '';
		width: 1px;
		height: 13px;
		opacity: 0.6;
		margin-left: 30px;
		margin-right: 22px;
		background: rgba(44, 62, 80, 1);
	}
}


// Mobile header breakpoint
.header-desktop {
	@include media-breakpoint-down (md) {
		display: none;
	}
}

.header-mobile {
	@include media-breakpoint-up (lg) {
		display: none;
	}
}
