.con-header {
	display: flex;
    position: sticky;
    background: var(--white);
    padding: 16px 20px;
    top: 0;
    justify-content: space-between;
    align-items: center;
	z-index:99;
}

.con-header-left, .con-header-right {
	display: flex;
    justify-content: space-between;
    align-items: center;
	gap:20px;
}

.con-header-left {

	h2 {font:var(--type-subtitle2-b);}
	.mobile-nav-logo {
		display:none;
		height:36px;
	}
}

.con-header-right {

}





.draweropen {
	width: 24px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
	display:flex;
	padding: 10px 7px 10px 12px;
    border: 1px solid var(--black15);
    border-radius: 8px;
}


.draweropen span, .draweropen span:before, .draweropen span:after {
    content: '';
    height: 2px;
    width: 20px;
    background-color: currentColor;
    transition: 0.1s;
    position: absolute;
}


.draweropen span:before {
    bottom: 6px;
}

.draweropen span:after {
    top: 6px;
}


.draweropen.active span {
    width: 0px;
    transition: 0.1s;
}

.draweropen.active span:before {
    bottom: 0;
    transition: all 0.1s cubic-bezier(.10,.0,.90,.0);
    transform: rotate(45deg);
}

.draweropen.active span:after {
	top: 0;
    transition: all 0.1s cubic-bezier(.10,.0,.90,.0);
    transform: rotate(-45deg);
}

.hd-ad-point-wrap {
	text-align:right;

	span {font:var(--type-discript); color:var(--black40);}
	h4 {font:var(--type-body-16-b);}
}






@media all and (max-width:816px) {

	
.con-header {
    padding: 12px;
}


.con-header-left {
	h2 {display:none;}
	.mobile-nav-logo {display:inline-block;}
}

.con-header-right {
	.hd-ad-point-wrap, > button {
		display:none;
	}


	
}