header{
    position: fixed;
    width: 100%;
    height: 48px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    justify-content: center;
    align-items: center;
    gap: 6.18px;
    background-color: var(--co-accent);
    border-bottom: 0.5px solid var(--co-secondary);
    padding: 0 6.18px;
}

.logo {
    width: 32px;
}

.btn-dropdown {
    justify-self: end;
    font-size: var(--fs-md);
    cursor: pointer;
    position: relative;
}

.btn-dropdown img {
    width: 24px;
    height: 24px;
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 48px;
    right: 6.18px;
    padding: 6.18px;
    z-index: 4;
}