header {
    background-color: var(--ultraDark);
}
header > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 27px 0;
}
header > div > * {
    max-height: 44px;
}

header > div > a {
    max-width: 186px;
    z-index: 70;
}

.header__controls {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: stretch;
    gap: 8px;
}
.header_user {
    margin-left: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
}
.header_user p {
    width: max-content;
    font-weight: 600;
    color: white !important;
}
.header_user > div {
    width: max-content;
    display: flex;
}

.header__controls .btn__gray > div {
    display: inherit;
}
.header__controls > .btn {
    width: 130px;
}
.header__controls .btn__gray p {
    color: white !important;
    font-weight: 500;
}
.header__controls .btn__gray {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.mobileLogo {
    display: none;
}
@media (max-width: 768px) {
    .desctopLogo {
        display: none;
    }
    .mobileLogo {
        object-fit: contain;
        display: block;
    }
    .header__controls > .btn {
        width: 80px;
    }
    .header_user {
        margin: 0;
    }
    .header_user p {
        display: none;
    }
}
