.header {
    align-items: center;
    min-width: 1000px;
    max-width: var(--content-width);
    width: 100%;
    display: grid;
    height: auto;
    padding-bottom: 7px;
    border-bottom: 1px solid #262626;
}
.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.logo {
    width: 92px;
    height: 40px;
    margin-left: 10px;
}
.main-components {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--help-content-width);
    margin: 0px auto;
    width: 100%;
}
.items {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.arrow{
    pointer-events: none;
    position: relative;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}
.header-item {
    height: 100%;
    padding: 16px 12px 16px 12px;
    align-items: center;
    position: relative;
    display: inline-flex;
    font-size: 15px;
    font-family: var(--family-overpass);
    font-weight: 500;
    color: #A6A6A6;
}
.header-item.is-current {
    color: #11D08F;
    border-bottom: 2px solid #11D08F;
    text-transform: uppercase;
    user-select: none;
    font-weight: 600;
}
.header-item.dropdown {
    cursor: pointer;
    user-select: none;
    gap: 15px;
    text-transform: uppercase;
}
.header-item.dropdown:hover {
    color: var(--link-color);
}
.header-item.dropdown.expand {
    color: var(--link-color);
}
.dropdown-list {
    align-content: center;
    background-color: #0A0708;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #D9D9D9;
    position: absolute;
    border: 2px solid #B3B3B3;
    z-index: 1200;
}
.header-item.dropdown.expand .arrow {
    transform: rotate(270deg);
}
.header-dropdown-item {
    text-align: center;
    align-content: center;
    height: 56px;
}
.header-item.user {
    border-left: 2px solid #262626;
    padding: 0px 10px 0px 24px;
    gap: 10px;
}
.user-key {
    font-family: 'Overpass', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #BFBFBF;
}
.user-value {
    font-family: 'Overpass', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #D9D9D9;
}
.prem {
    display: grid;
    text-align: end;
    color: #F7BE01;
    padding: 0px 0px 0px 0px;
}
span.prem-text {
    font-family: 'Overpass', sans-serif;
    font-size: 12px;
    font-weight: 400;
}
span.prem-days {
    font-family: 'Tektur', sans-serif;
    font-size: 16px;
    font-weight: 500;
}
.prem.red {
    color: #F13F75;
}
.notification-dot {
    background: var(--new-ticket-color);
    width: 10px;
    height: 10px;
    border-radius: 10px;
    position: absolute;
    top: 8px;
    right: -1px;
}
.notification-dot.disabled {
    display: none;
}