.component-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    height: 50px;
}

.component-header_left {
    position: absolute;
    left: 120px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    color: rgb(var(--header-text-color));
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
}

.component-header_left_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 20px;
}

.component-header_left_icon img {
    width: 100%;
    height: auto;
}

.component-header_left_icon-default {
    width: 30px;
    height: 20px;
    background-color: #ddd;
}

.component-header_left_text {
    margin-left: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.component-header_center {
    /* padding-right: 90px; */
    /* font-size: 18px;
    font-weight: 400;
    line-height: 25.2px; */
    color: rgb(var(--header-text-color));
}

.component-header_right {
    position: absolute;
    right: 120px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    color: rgb(var(--header-text-color));
}

.component-header_right_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
}

.component-header_right_line {
    margin: 0 30px;
    height: 21px;
    border-left: 1px solid rgb(var(--header-text-color));
}

.component-header_right_login {
    display: flex;
    align-items: center;
}

.component-header_right_login_icon {
    margin-right: 8px;
    color: rgb(var(--header-text-color));
}

.component-header_right_login_icon_default {
    width: 28px;
    height: 28px;
    background: #D9D9D9;
    margin-right: 6px;
}

.component-header_right_login_text {
    text-align: left;
    color: rgb(var(--header-text-color)) !important;
}