/**
 * TARG
 * Tymczasowe pozostawienie widocznych funkcji użytkownika.
 *
 * Ikony w nagłówku są widoczne, ale ich działanie
 * jest blokowane przez osobny skrypt JavaScript.
 */

/* ==========================================================
   PRZYWRÓCENIE ELEMENTÓW DESKTOPOWYCH
========================================================== */

:is(
.rh_header__user-favorite,
.rh_user__favorite,
.header-favorite,
.favorite-btn,
.rh_favorite,
.rh_header__user,
.rh_user_account,
.user_menu_wrapper,
.inspiry-user-login,
.rh_login_wrapper
) {
visibility: visible !important;
opacity: 1 !important;
}

/* ==========================================================
   PRZYWRÓCENIE MENU MOBILNEGO I TELEFONU
========================================================== */

:is(
.mobile-menu,
.rh_mobile_menu
) :is(
.contact-number,
.rh_contact_number,
.rh_menu__contact,
.rh_menu__phone
) {
display: revert !important;
visibility: visible !important;
opacity: 1 !important;
}

:is(
.mobile-menu,
.rh_mobile_menu
) li:has(a[href*="dashboard"]),

:is(
.mobile-menu,
.rh_mobile_menu
) li:has(a[href*="favorites"]) {
display: list-item !important;
visibility: visible !important;
opacity: 1 !important;
}

/* ==========================================================
   NIEAKTYWNE IKONY W NAGŁÓWKU
========================================================== */

header :is(
a.targ-header__icon[href*="favorites"],
a.targ-header__icon[href*="dashboard"],
a.targ-header__icon[href*="login"],
a.targ-header__icon[href*="account"],
a.targ-header__icon[href*="profile"],
a.tgn-header-user-link-disabled
) {
display: inline-flex !important;

visibility: visible !important;
opacity: 1 !important;

cursor: default !important;
pointer-events: none !important;

text-decoration: none !important;
}

/*
 * Ikony nie powinny wyglądać jak element wyłączony.
 */

header
a.tgn-header-user-link-disabled {
filter: none !important;
}

/*
 * Usuwamy reakcję hover odziedziczoną ze starszych arkuszy.
 */

header
a.tgn-header-user-link-disabled:hover {
color: inherit !important;
background: transparent !important;

transform: none !important;
}

/* TARG_MOBILE_USER_ICONS_FINAL_START
   Aktualny nagłówek TARG:
   na telefonach pozostają tylko logo i hamburger.
---------------------------------------------------------- */

@media screen and (max-width: 767px) {

    html body .targ-header
    .targ-header__actions
    > a.targ-header__icon,

    html body .targ-header
    .targ-header__actions
    > a[aria-label="Ulubione"],

    html body .targ-header
    .targ-header__actions
    > a[aria-label="Konto"] {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* TARG_MOBILE_USER_ICONS_FINAL_END */

