header {
    height: 60px;
    align-items: center;
    display: flex;
    padding: 0 25px;
    border-bottom: 1px solid rgb(200, 200, 200);
    justify-content: stretch;
    flex: none;
}

#layer_bg {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: none;
    align-items: center;
    justify-content: center;
}

header .logo-wrapper {
    font-size: 20px;
}

header .logo {
    font-weight: bold;
}

.header-con {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    height: 100%;
}

.account-wrapper {
    position: relative;
    height: 100%;
    user-select: none;
    display: flex;
    align-items: center;
}

.ha-login-wrapper {
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
}

.hal-img-wrapper img {
    height: 35px;
    width: 35px;
    border-radius: 50px;
}

.hal-arrow svg {
    height: 10px;
    fill: gray;
}

.hal-name {
    margin: 0 10px;
}

.hal-pop-up {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 60px;
    width: fit-content;
    border: 1px solid rgb(200, 200, 200);
    display: none;
    padding: 5px 0 10px 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top: 0 solid transparent;
}

.ha-login-wrapper:hover {
    background: rgb(235, 235, 235);
}

.account-wrapper-popped .ha-login-wrapper {
    background: rgb(235, 235, 235);
}

.account-wrapper-popped .hal-pop-up {
    display: flex;
    flex-direction: column;
}

.halpu-item {
    display: flex;
    cursor: pointer;
    align-items: center;
    height: 26px;
    font-size: 15px;
    padding: 3px 60px 3px 15px;
}

.halpu-item:hover {
    background: rgb(235, 235, 235);
}

.halpui-ico svg {
    height: 17px;
    margin-top: 2px;
}

.halpui-ico svg g, .halpui-ico svg {
    fill: #0583c7;
}

.halpui-ico {
    width: 25px;
}

.acc-not-wrapper {
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    transition: 0.1s;
    position: relative;
}

.ha-balance-wrapper:hover {
    background: rgb(235, 235, 235);
    cursor: pointer;

}

.accnc span {
    font-size: 10px;
}

.account-wrapper-popped-hnot .acc-not-wrapper {
    background: rgb(235, 235, 235);
}

.acc-not-wrapper:hover {
    background: rgb(235, 235, 235);
    cursor: pointer;
}

.acc-not-count {
    background: #E64646;
    border-radius: 15px;
    position: absolute;
    top: 10px;
    right: 12px;
    color: white;
    font-size: 10px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    box-sizing: border-box;
    padding-right: 1px;
}

.hnot-pop-up {
    display: none;
}

.account-wrapper-popped-hnot .hnot-pop-up {
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 10;
    width: 400px;
    height: 700px;
    display: flex;
    border: 1px solid rgb(200, 200, 200);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    user-select: text;
    border-top: 0px solid transparent;
    box-shadow: 0 3px 3px 3px rgba(0, 0, 0, 0.03);
}

.hnot-no-items {
    width: 100%;
    text-align: center;
    color: gray;
    margin-top: 300px;
}

.ha-balance-wrapper {
    display: flex;
    height: 100%;
    align-items: center;
    border-left: 1px solid rgb(225, 225, 225);
}

.acc-not-wrapper {
    border-left: 1px solid rgb(225, 225, 225);
    border-right: 1px solid rgb(225, 225, 225);
}

.ncbh-new {
    justify-content: center;
    display: flex !important;
}

.ncbhab {
    width: fit-content;
}

.accnc-badge {
    font-size: 10px !important;
}

.ha-balance-wa {
    height: 100%;
    text-decoration: none;
    color: black;
}
@media screen and (max-height: 800px) {
    header{
        height: 43.5px;
    }
}

@media screen and (max-width: 500px) {
    .logo {
        padding: 0 25px;
    }

    .ha-login-wrapper {
        display: none;
    }

    header {
        height: 43.5px;
        padding: 0;
    }
}