.header-container {
    min-width: 0;
    height: 56px;
    border: 0;
    background-color: #F4F8FF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-div-left {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-div-left span {
    color: #3d3d3d;
    font-weight: 600;
    word-break: keep-all;
    flex: 1;
    cursor: default;
}

.header-div-right {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-div-right span {    
    color: #296591;
    font-size: 15px;
    cursor: default;
}
.header-img, .header-help {
	cursor: pointer;
}
.header-shell{
	background-color: #fff; 
	padding: 6px 10.5px; 
	border-radius: 50px; 
	border: 1px solid #C6DCFF;
	display: flex;
    align-items: center;
    flex-direction: row;
    gap: 5px;
}

.header-div-right-plus {
    display: flex;
    align-items: center;
}

.sub-header-container {
    min-width: 0;
    height: 52px;
    border: 0;
    background-color: #F4F8FF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #e1e1e1;
}
.sub-header-container.charge {
    background-color: #EEE1FF;
}
.header-help-modal {
	display: none;
	position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
	min-height: 100svh;
    max-height: 100lvh; 
    background-color: rgba(0, 0, 0, 0.5);
    /*backdrop-filter: blur(5px);*/
}
.header-help-modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
/*     min-height: 40%; */
    text-align: center;
    height: fit-content;
    cursor: default;
}
.header-help-modal-content h1{
	font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}
.header-help-modal.on {
    display: block;
}
.header-help-modal .close-btn {
  	color: #aaa;
  	font-size: 28px;
  	font-weight: bold;
  	position: absolute;
  	top: 15px;
  	right: 15px;
	cursor: pointer;
}
.header-help-table{
	min-width: 85%;
   	border: 1px solid grey;
   	margin: 15px auto;
}
.header-help-table thead{
   background: rgba(244, 248, 255, 1);
   line-height: 25px;
   font-weight: 500;
   color: #296591;
}
.header-help-table th{
   border: 1px solid grey;
   padding: 10px;
   word-break: keep-all;
   line-height: 20px;
   align-content: center;
   font-size: 15px;
}
.header-help-table tr{
   border: 1px solid grey;
}
.header-help-table td{
   border: 1px solid grey;
   text-align: center;
   align-content: center;
   line-height: initial;
   font-size: 14px;
   padding: 5px;
   word-break: keep-all;
}
.header-help-table .shell-intro-div {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 3px;
}
.header-help-notice{
  	font-size: 12px;
    color: grey;
	word-break: keep-all;
}