.h_holder {
    position        : fixed;
    left            : 0;
    top             : 0;
    padding         : 24px 20px 24px 20px;
    background-color: white;
    display         : flex;
    flex-direction  : row;
    align-items     : center;
    min-width       : 280px;
    width           : calc(100% - 40px);
    height          : 46px;
    max-height      : 46px;
    z-index         : 3;
    box-shadow      : rgba(0, 0, 0, 0.16) 0px 5px 10px;
}

.h_fake {
    position        : relative;
    left            : 0;
    top             : 0;
    padding         : 24px 20px 24px 20px;
    background-color: white;
    display         : flex;
    flex-direction  : row;
    align-items     : center;
    min-width       : 280px;
    width           : calc(100% - 40px);
    height          : 46px;
    max-height      : 46px;
}



.h_holder_footer {
    position: absolute;
    top     : calc(100% - 24px);
    height  : 24px;
    left    : 0;
    width   : calc(100% - 40px);
    padding : 0px 20px 0px 20px;
}

.h_logo {
    position  : relative;
    width     : 72px;
    height    : 46px;
    background: url(/src/logo_menu.svg) center/contain no-repeat;
    transition: ease 0.3s;
}

.h_nav {
    position      : relative;
    display       : flex;
    flex-direction: row;
    align-items   : center;
    padding       : 0 10px 0 10px;
    width         : calc(100% - 277px);
}

.h_nav_link {
    position       : relative;
    font-size      : 14px;
    color          : #898989;
    transition     : ease 0.3s;
    margin-left    : 20px;
    text-decoration: none !important;
}

.h_nav_dot {
    position        : absolute;
    left            : calc(50% - 2px);
    top             : 50%;
    width           : 4px;
    height          : 4px;
    border-radius   : 100%;
    background-color: #252525;
    opacity         : 0;
    transition      : ease 0.3s;
}

.h_show_side_menu {
    position   : relative;
    width      : 17px;
    height     : 17px;
    background : url(/src/icons/go.svg) center/contain no-repeat;
    margin-left: 20px;
    transition : ease 0.3s;
    border     : none;
}

.h_show_side_menu[direction="1"] {
    transform: scaleX(-1);
}

.h_show_side_menu:active {
    background-image: url(/src/icons/go_hover.svg);
}

.h_nav_link:active {
    color: #252525;
}

.h_nav_link:active .h_nav_dot {
    opacity: 1;
    top    : calc(100% + 8px);
}

.h_nav_link[active="true"] {
    color: #0057FF !important;
}

.h_nav_link[active="true"] .h_nav_dot {
    background-color: #0057FF !important;
    opacity         : 1 !important;
    top             : calc(100% + 8px) !important;
}

.h_action_holder {
    position      : relative;
    display       : flex;
    width         : 183px;
    max-width     : 183px;
    min-width     : 183px;
    flex-direction: row-reverse;
    align-items   : center;
}

.h_signin_bt {
    position     : relative;
    text-align   : center;
    padding      : 10px 10px;
    border       : 1px solid #3D7FFF;
    border-radius: 10px;
    font-size    : 13px;
    color        : white;
    transition   : ease 0.3s;
    background   : #3D7FFF;
    max-width    : 50px;
    width        : 50px;
    min-width    : 50px;
    white-space  : nowrap;
    overflow     : hidden;
    text-overflow: ellipsis;
    box-sizing   : content-box;
}

.h_signin_bt:active {
    background: #0057FF;
}

.h_sep {
    position        : relative;
    width           : 1px;
    margin-right    : 12px;
    margin-left     : 12px;
    height          : 40px;
    background-color: #bbbbbb;
}

.h_lang_sel {
    position  : relative;
    border    : none;
    outline   : none;
    font-size : 15px;
    color     : #898989;
    padding   : 4px 8px 4px 0px;
    transition: ease 0.3s;
}

.h_lang_sel:focus {
    color: #424242;
}

.h_login_section {
    position       : relative;
    display        : flex;
    align-items    : center;
    justify-content: center;
    width          : 90px;
    height         : 36px;
}

.h_lang_section {
    position       : relative;
    display        : flex;
    align-items    : center;
    justify-content: center;
    width          : 69px;
    height         : 36px;
}

.h_lang {
    color     : #898989;
    font-size : 14px;
    transition: ease 0.3s;
    padding   : 0 10px 0 10px;
    max-width : 36px;
    word-wrap : break-word;
}

.h_triangle {
    position  : relative;
    width     : 8px;
    height    : 6px;
    background: url(/src/header/triangle.svg) center/contain no-repeat;
    transition: ease 0.3s;
}

.h_login_bubble {
    position       : relative;
    width          : 36px;
    height         : 36px;
    background     : linear-gradient(120deg, rgba(0, 87, 256, 1), rgba(199, 112, 255, 1));
    display        : flex;
    align-items    : center;
    justify-content: center;
    border-radius  : 100%;
    color          : white;
    font-size      : 15px;
    margin         : 0 10px 0 10px;
}

.h_menu_bt {
    position  : relative;
    width     : 20px;
    height    : 20px;
    background: url(/src/menu.svg) center/contain no-repeat;
    transition: ease 0.3s;
    display   : none;
}

.h_menu_bt:active {
    background-image: url(/src/menu_hover.svg);
}

@media(hover:hover) and (pointer:fine) {
    .h_nav_link:hover {
        color: #252525;
    }

    .h_show_side_menu:hover {
        background-image: url(/src/icons/go_hover.svg);
    }

    .h_nav_link:hover .h_nav_dot {
        opacity: 1;
        top    : calc(100% + 8px);
    }

    .h_signin_bt:hover {
        background: #0057FF;
    }

    .h_menu_bt:hover {
        background-image: url(/src/menu_hover.svg);
    }
}

@media (pointer:coarse) {
    .h_nav {
        display: none;
    }

    .h_action_holder {
        width    : 147px;
        max-width: 147px;
        min-width: 147px;
    }

    .h_menu_bt {
        display: block;
    }

    .h_logo {
        margin-left : calc(50% - 105.5px);
        margin-right: calc(50% - 105.5px);
        width       : 44px;
        height      : 28px;
    }
}

@media (max-width:1023px) and (min-width:0),
(max-width:1023px) and (min-device-width:0) {
    .h_nav {
        display: none;
    }

    .h_action_holder {
        width    : 147px;
        max-width: 147px;
        min-width: 147px;
    }

    .h_menu_bt {
        display: block;
    }

    .h_logo {
        margin-left : calc(50% - 105.5px);
        margin-right: calc(50% - 105.5px);
        width       : 44px;
        height      : 28px;
    }
}

.h_show_side_menu[toggle="true"] {
    transform: scaleX(-1);
}

.h_show_side_menu[toggle="true"][direction="1"] {
    transform: scaleX(1);
}