.headerConfig {
	margin: 0;
	border-bottom: var(--screen-px) solid var(--base-line-secondary);
	background: var(--base-cont-mid);
}

.headerConfig__title {
	display: flex;
	flex-direction: column;
}

.headerConfig__title-path {
	padding: 26px 0 0 20px;
}

.headerConfig__title-path a {
	font: var(--font-ui-12-mini-med);
	color: var(--base-txt-tertiary);
	--icon-color: var(--base-txt-tertiary);
	--icon-size: 16px;
	padding: 0 6px 0 2px;
	display: none;
	border-radius: 4px;
}

.headerConfig__title-path a:hover {
	color: var(--base-txt-primary);
	--icon-color: var(--base-txt-primary);
	background: var(--base-hlt-g-hover);
}

.headerConfig__title-name {
	display: flex;
	align-items: center;
}

.headerConfig__title-name:last-child {
	padding: 2px 20px 8px 22px;
}

.headerConfig__title-name > .in {
	flex-grow: 1;
	flex-shrink: 0;
	padding: 0 4px;
	font: var(--font-ui-22-title-1-bold);
	color: var(--base-txt-primary);
}

.headerConfig__title-name .r .in {
	padding: 0 8px;
	font: var(--font-ui-12-mini-reg);
	color: var(--base-txt-secondary);
}

.headerConfig__title-name .r > ws-icon {
	 margin-right: 8px;
	 --icon-color: var(--base-txt-notice-minor);
}

.headerConfig__title-name .r > ws-icon.alert {
	--icon-color: var(--base-txt-btn-w);
}

.headerConfig__title-name .r ws-btn {
	margin-left: 12px;
}

.headerConfig__tabs {
	padding-left: 20px;
	white-space: nowrap;
	overflow: hidden;
	height: 34px;

	position: relative;
	bottom: var(--screen-minus-px);
}

.headerConfig__tabs::-webkit-scrollbar:horizontal {
	display: none;
}

.headerConfig__tabs a {
	display: flex;
	color: var(--base-txt-tertiary);
	font: var(--font-ui-14-regular-reg);
	padding: 0 4px;
	margin-top: -2px;
	margin-bottom: 2px;
	height: 32px;
	-webkit-transition: box-shadow 0.3s ease;
	transition: box-shadow 0.3s ease;
	align-items: center;
	overflow: hidden; /* adds rounder corners for tap-highlight */
}

.headerConfig__tab-disabled a {
	cursor: default;
}

.headerConfig__tabs a .badge {
	margin: 0 4px;
}

.headerConfig__tabs .headerConfig__tab {
	display: flex;
	float: left;
	flex-direction: column;
	margin-right: 4px;
	letter-spacing: 0.01rem;
}

.headerConfig__tabs a:hover {
	color: var(--base-txt-secondary);
}

.headerConfig__tab-disabled a:hover {
	color: var(--base-txt-muted);
}

.headerConfig__tabs a.selected {
	background: var(--base-hlt-b-hover);
}

.headerConfig__tabs a:hover + .headerConfig__tab-border {
	background: var(--base-txt-tertiary);
}

.headerConfig__tab-disabled a:hover + .headerConfig__tab-border {
	background: none;
}

.headerConfig__tabs a.act, .headerConfig__tabs a.act:hover {
	color: var(--base-txt-accent);
}
.headerConfig__tabs a.act .in {
	text-shadow: -0.03ex 0 0 currentColor, 0.03ex 0 0 currentColor;
}

@supports (-webkit-text-stroke-width: 0.04ex) {
	.headerConfig__tabs a.act .in {
		text-shadow: -0.03ex 0 0 currentColor, 0.03ex 0 0 currentColor;
		-webkit-text-stroke-width: 0.04ex;
	}
}

.headerConfig__tabs .headerConfig__tab-border {
	width: 100%;
	height: 2px;
	border-radius: 1px;
	background: transparent;
}

.headerConfig__tabs .act + .headerConfig__tab-border {
	background: var(--base-hlt-b-invert);
}

.headerConfig__tabs a:hover > ws-icon {
	--icon-color: var(--base-txt-secondary);
}

.headerConfig__tabs a > ws-icon {
	padding: 0 4px;
	--icon-color: var(--base-txt-tertiary);
}

.headerConfig__tabs a.act > ws-icon {
	--icon-color: var(--base-txt-accent);
}

.headerConfig__tab-disabled a > ws-icon,
.headerConfig__tab-disabled a:hover > ws-icon {
	--icon-color: var(--base-txt-muted);
}

.headerConfig__tabs a.act .ico {
	margin-left: -10px;
	position: relative;
	left: 10px;
	top: 2px;
}

.headerConfig__tabs a .in {
	padding: 0 2px;
}

.headerConfig__tab-disabled a .in {
	color: var(--base-txt-muted);
}

@media (max-width: 1080px) and (min-width: 481px) {
	.headerConfig__title-path {
		padding-top: 6px;
	}

	.headerConfig__title-path a {
		display: inline-flex;
	}
}

.headerConfig__title-name .r .in.payment_ok span.hand_ok {
	font-size: 24px;
}

.headerConfig__title-name .r .in.payment_ok {
	display: flex;
}

@media (max-width: 748px) {
	.headerConfig__title-name .r .in.trial_notice,
	.headerConfig__title-name .r .in.payment_notice,
	.headerConfig__title-name .r .in.freeze_notice {
		display: none;
	}
}

@media (max-width: 600px) {
	.headerConfig__title-name .r .in.payment_ok,
	.headerConfig__title-name .r .in.freeze_warn {
		display: none;
	}
}

@media screen and (min-width: 481px) {
	.headerConfig .mobile-head__left {
		display: none;
	}
	.headerConfig__title-name .name {
		display: none;
	}
}
@media screen and (max-width: 480px) {
	.headerConfig {
		z-index: 1;
		border-bottom: unset;
	}
	.headerConfig__tabs {
		padding: 4px 14px 0;
		bottom: 0;
	}
	.headerConfig__tabs-wrapper {
		gap: 4px;
		.headerConfig__tab {
			margin-right: 0;
		}
	}
}