#header {
	position: relative;
	z-index: 20;
	max-width: 500px;
	margin: 0 auto;
}
#header .header-sub {
	display: flex;
	position: relative;
	height: 56px;
	align-items: center;
	justify-content: center;
}
#header .header-sub .sub-btn {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 24px;
	margin: auto 0;
}
#header .header-sub .sub-btn.prev {
	left: 0;
}
#header .header-sub .sub-btn.set {
	right: 0;
}
#header .header-sub .sub-btn.alarm {
	right: 0;
}
#header .header-sub .sub-btn.alarm.new:before {
	position: absolute;
	top: 2px;
	right: 2px;
	z-index: 3;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--Alerts-Error-Base);
	content: '';
}
#header .header-sub .sub-title {
	position: relative;
	padding: 0 4px;
}
#header .header-sub .sub-title h2 {
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
}
#header .header-sub .title-info {
	position: absolute;
	top: 2px;
	left: 100%;
}
#header .header-sub .sub-title .h2 + .title-info {
	top: 4px;
}

#header .header-main {
	display: flex;
	margin: 0 auto;
	padding: 16px 0;
	align-items: center;
	justify-content: space-between;
}
#header .header-main .main-btn {
	position: relative;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(0, 20, 102, 0.06);
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #fff;
	font-size: 0;
}
#header .header-main .main-btn.alarm {
	background-image: url(/images/icon/icon-alarm.svg);
}
#header .header-main .main-btn.alarm.new:before {
	position: absolute;
	top: 11px;
	right: 11px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--Alerts-Error-Base);
	content: '';
}
#header .header-main .main-btn.menu {
	background-image: url(/images/icon/icon-menu.svg);
}
