.elementor-18224 .elementor-element.elementor-element-a7662af{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-18224 .elementor-element.elementor-element-dbbabb0 > .elementor-element-populated{padding:0px 0px 0px 0px;}/* Start custom CSS for shortcode, class: .elementor-element-a536ba8 *//* ==========================================================
   SCUUZE GLOBAL HEADER
   ========================================================== */

:root {
    --scz-header-height: 74px;
    --scz-header-max-width: 1440px;

    /*
     * Replace this with the exact official Scuuze primary
     * colour already used on the website.
     */
   --scz-primary: var(
    --e-global-color-primary,
    #0077FF
);

    --scz-header-bg: #ffffff;
    --scz-text: #172033;
    --scz-muted: #667085;
    --scz-border: #e8ebf0;
    --scz-hover: #f7f8fa;

    --scz-radius-sm: 8px;
    --scz-radius-md: 12px;
    --scz-radius-lg: 16px;

    --scz-shadow:
        0 12px 35px rgba(16, 24, 40, 0.10);
}


/* HEADER */

.scz-global-header {
    position: sticky;

    top: 0;

    width: 100%;

    z-index: 9999;

    background: var(--scz-header-bg);

    border-bottom:
        1px solid var(--scz-border);

    font-family: inherit;
}


.scz-header-inner {
    max-width: var(--scz-header-max-width);
    min-height: var(--scz-header-height);

    margin: 0 auto;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}


/* LEFT SIDE */

.scz-header-left {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 42px;
}


/* LOGO */

.scz-header-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;

    text-decoration: none;
}


.scz-header-logo-image {
    display: block;
    width: auto;
    max-width: 145px;
    max-height: 38px;
}


.scz-logo-fallback {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--scz-text);
}


/* DESKTOP NAVIGATION */

.scz-header-nav {
    display: flex;
    align-items: center;

    gap: 30px;
}


.scz-header-nav > a,
.scz-header-dropdown > summary {
    color: var(--scz-text);
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    transition:
        color .18s ease,
        background .18s ease;
}


.scz-header-nav > a:hover,
.scz-header-dropdown > summary:hover {
    color: var(--scz-primary);
}


/* DETAILS RESET */

.scz-header-dropdown {
    position: relative;
}


.scz-header-dropdown > summary {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 5px;
}


.scz-header-dropdown > summary::-webkit-details-marker {
    display: none;
}


.scz-dropdown-chevron {
    display: inline-flex;
}


.scz-dropdown-chevron svg,
.scz-account-chevron svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform .2s ease;
}


.scz-header-dropdown[open]
.scz-dropdown-chevron svg,

.scz-header-dropdown[open]
.scz-account-chevron svg {
    transform: rotate(180deg);
}


/* DROPDOWN PANEL */

.scz-dropdown-panel {
    position: absolute;

    top: calc(100% + 18px);

    background: #fff;

    border: 1px solid var(--scz-border);
    border-radius: var(--scz-radius-lg);

    box-shadow: var(--scz-shadow);

    overflow: hidden;

    z-index: 1000;
}


/* EXPLORE */

.scz-explore-panel {
    left: -24px;

    width: 310px;

    padding: 10px;
}


.scz-dropdown-label {
    padding: 8px 12px 10px;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;

    letter-spacing: .06em;

    color: var(--scz-muted);
}


.scz-explore-panel a {
    display: flex;

    padding: 11px 12px;

    border-radius: 10px;

    text-decoration: none;

    color: var(--scz-text);

    transition: background .15s ease;
}


.scz-explore-panel a:hover {
    background: var(--scz-hover);
}


.scz-explore-panel a span {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.scz-explore-panel strong {
    font-size: 14px;
    font-weight: 650;
}


.scz-explore-panel small {
    font-size: 12px;
    line-height: 1.35;

    color: var(--scz-muted);
}


/* RIGHT SIDE */

.scz-header-right {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-shrink: 0;
}


/* LOGGED OUT */

.scz-header-guest-actions {
    display: flex;
    align-items: center;

    gap: 18px;
}


.scz-signin-link {
    color: var(--scz-text);

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}


.scz-signin-link:hover {
    color: var(--scz-primary);
}


/* PRIMARY BUTTON */

.scz-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 18px;

    border-radius: 10px;

    background: var(--scz-primary);

    color: #fff !important;

    text-decoration: none;

    font-size: 14px;
    font-weight: 650;

    transition:
        transform .15s ease,
        opacity .15s ease;
}


.scz-primary-button:hover {
    opacity: .92;
}


/* LOGGED IN ACTIONS */

.scz-header-user-actions {
    display: flex;
    align-items: center;

    gap: 4px;
}


/* ICON BUTTON */

.scz-icon-button {
    position: relative;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: transparent;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--scz-text);

    cursor: pointer;

    text-decoration: none;

    transition: background .15s ease;
}


.scz-icon-button:hover {
    background: var(--scz-hover);
}


.scz-icon-button svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* NOTIFICATION COUNT */

/* ==========================================================
   HEADER COUNTERS
   Used by Saved + Notifications
   ========================================================== */

.scz-header-count-badge {
    position: absolute;

    top: 1px;
    right: 0;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #ffffff;
    border-radius: 999px;

    background: var(--scz-primary);
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.scz-notification-trigger
.scz-header-count-badge {
    background: #e11919;
}


/* Saved state */

.scz-saved-button:has(
    .scz-header-count-badge
) {
    color: var(--scz-primary);
}

.scz-saved-button:has(
    .scz-header-count-badge
) svg {
    fill:
        color-mix(
            in srgb,
            var(--scz-primary) 12%,
            transparent
        );

    stroke: var(--scz-primary);
}


/* ACCOUNT */

.scz-account-trigger {
    padding: 2px 3px 2px 7px;

    border-radius: 25px;

    display: flex !important;
    align-items: center;

    gap: 5px;
}


.scz-account-trigger:hover {
    background: var(--scz-hover);
}


.scz-avatar,
.scz-account-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--scz-primary);
    color: #fff;

    font-weight: 700;

    flex-shrink: 0;
}


.scz-avatar {
    width: 38px;
    height: 38px;

    font-size: 12px;
}


.scz-account-avatar {
    width: 44px;
    height: 44px;

    font-size: 13px;
}


/* ACCOUNT DROPDOWN */

.scz-account-panel {
    right: 0;

    width: 280px;

    padding: 9px;
}


.scz-account-user {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 10px;
}


.scz-account-user > div {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 3px;
}


.scz-account-user strong {
    color: var(--scz-text);

    font-size: 14px;
    font-weight: 650;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.scz-account-user span:not(.scz-account-avatar) {
    font-size: 11px;

    color: var(--scz-muted);

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.scz-account-panel > a {
    display: flex;
    align-items: center;

    gap: 10px;

    min-height: 40px;

    padding: 8px 10px;

    border-radius: 9px;

    text-decoration: none;

    color: var(--scz-text);

    font-size: 13px;
    font-weight: 550;

    transition: background .15s ease;
}


.scz-account-panel > a:hover {
    background: var(--scz-hover);
}


.scz-menu-divider {
    height: 1px;

    margin: 7px 3px;

    background: var(--scz-border);
}


.scz-menu-icon {
    display: inline-flex;
}


.scz-menu-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.scz-logout-link {
    color: #d92d20 !important;
}


/* MOBILE MENU BUTTON */

.scz-mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: transparent;

    color: var(--scz-text);

    cursor: pointer;
}


.scz-mobile-menu-button:hover {
    background: var(--scz-hover);
}


.scz-mobile-menu-button svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;
    stroke-linecap: round;
}


.scz-menu-close-icon {
    display: none;
}


/* MOBILE MENU */

.scz-mobile-menu {
    display: none;

    padding: 8px 20px 22px;

    border-top: 1px solid var(--scz-border);

    background: #fff;
}


.scz-mobile-nav {
    display: flex;
    flex-direction: column;
}


.scz-mobile-nav > a,
.scz-mobile-nav > details > summary {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--scz-border);

    color: var(--scz-text);

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
}


.scz-mobile-nav summary {
    list-style: none;
    cursor: pointer;
}


.scz-mobile-nav summary::-webkit-details-marker {
    display: none;
}


.scz-mobile-nav summary svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;
}


.scz-mobile-submenu {
    padding: 6px 0 10px 14px;
}


.scz-mobile-submenu a {
    display: block;

    padding: 11px 0;

    color: var(--scz-muted);

    text-decoration: none;

    font-size: 14px;
}


.scz-mobile-guest-actions {
    display: grid;

    gap: 10px;

    margin-top: 20px;
}


.scz-mobile-signin {
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--scz-border);
    border-radius: 10px;

    color: var(--scz-text);

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1080px) {

    .scz-header-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .scz-header-left {
        gap: 28px;
    }

    .scz-header-nav {
        gap: 20px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 900px) {

    :root {
        --scz-header-height: 64px;
    }

    .scz-header-inner {
        min-height: var(--scz-header-height);

        padding-left: 16px;
        padding-right: 12px;
    }

    .scz-header-nav,
    .scz-header-guest-actions {
        display: none;
    }

    .scz-mobile-menu-button {
        display: inline-flex;
    }

    .scz-global-header.scz-mobile-open
    .scz-mobile-menu {
        display: block;
    }

    .scz-global-header.scz-mobile-open
    .scz-menu-open-icon {
        display: none;
    }

    .scz-global-header.scz-mobile-open
    .scz-menu-close-icon {
        display: inline-flex;
    }

    .scz-header-logo-image {
        max-width: 120px;
        max-height: 32px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .scz-header-user-actions .scz-account-chevron {
        display: none;
    }

    .scz-header-user-actions {
        gap: 1px;
    }

    .scz-icon-button {
        width: 39px;
        height: 39px;
    }

    .scz-avatar {
        width: 36px;
        height: 36px;
    }

}

/* ==========================================================
   ACTIVE NAVIGATION
   ========================================================== */

.scz-header-nav > .scz-nav-link {
    position: relative;
}


.scz-header-nav > .scz-nav-link.is-active {
    color: var(--scz-primary);
}


.scz-header-nav > .scz-nav-link.is-active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -12px;

    height: 2px;

    border-radius: 999px;

    background: var(--scz-primary);
}


.scz-global-header {
    transition:
        box-shadow .2s ease,
        border-color .2s ease;
}


.scz-global-header.scz-header-scrolled {
    border-bottom-color: transparent;

    box-shadow:
        0 4px 18px
        rgba(16, 24, 40, 0.07);
}



/* ==========================================================
   HEADER NOTIFICATIONS
   ========================================================== */

.scz-notifications-menu {
    position: relative;
}


/* Dropdown */

.scz-notification-panel {
    right: -50px;

    width: 390px;
    max-width: calc(100vw - 24px);

    padding: 0;

    overflow: hidden;
}


/* Header */

.scz-notification-panel-header {
    min-height: 68px;

    padding: 14px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    border-bottom:
        1px solid var(--scz-border);
}


.scz-notification-panel-header > div:first-child {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.scz-notification-panel-header strong {
    color: var(--scz-text);

    font-size: 15px;
    font-weight: 700;
}


.scz-notification-panel-header span {
    color: var(--scz-muted);

    font-size: 11px;
}


/* Mark all read */

.scz-header-mark-all-read a {
    color: var(--scz-primary);

    font-size: 11px;
    font-weight: 650;

    text-decoration: none;
}


.scz-header-mark-all-read a:hover {
    text-decoration: underline;
}


/* List */

.scz-header-notification-list {
    max-height: 390px;

    overflow-y: auto;
}


/* Notification */

.scz-header-notification {
    position: relative;

    min-height: 78px;

    padding: 13px 16px;

    display: flex;
    align-items: flex-start;

    gap: 11px;

    border-bottom:
        1px solid var(--scz-border);

    color: var(--scz-text);

    text-decoration: none;

    transition:
        background .15s ease;
}


.scz-header-notification:hover {
    background: var(--scz-hover);
}


/* Unread */

.scz-header-notification.is-unread {
    background:
        color-mix(
            in srgb,
            var(--scz-primary) 4%,
            white
        );
}


.scz-header-notification.is-unread:hover {
    background:
        color-mix(
            in srgb,
            var(--scz-primary) 7%,
            white
        );
}


/* Status dot */

.scz-notification-status {
    width: 8px;
    height: 8px;

    margin-top: 6px;

    border-radius: 50%;

    background: transparent;

    flex: 0 0 auto;
}


.scz-header-notification.is-unread
.scz-notification-status {
    background: var(--scz-primary);
}


/* Content */

.scz-notification-content {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}


.scz-notification-content strong {
    color: var(--scz-text);

    font-size: 13px;
    font-weight: 650;

    line-height: 1.35;
}


.scz-notification-message {
    color: var(--scz-muted);

    font-size: 12px;

    line-height: 1.45;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


.scz-notification-content small {
    margin-top: 2px;

    color: #98a2b3;

    font-size: 10px;
}


/* View all */

.scz-notification-view-all {
    min-height: 48px;

    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--scz-primary);

    text-decoration: none;

    font-size: 12px;
    font-weight: 650;

    background: #fff;
}


.scz-notification-view-all:hover {
    background: var(--scz-hover);
}


/* Empty state */

.scz-notification-empty {
    min-height: 180px;

    padding: 30px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    gap: 6px;
}


.scz-notification-empty-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--scz-hover);

    color: var(--scz-muted);
}


.scz-notification-empty-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
}


.scz-notification-empty strong {
    color: var(--scz-text);

    font-size: 13px;
}


.scz-notification-empty > span:last-child {
    color: var(--scz-muted);

    font-size: 11px;
}


@media (max-width: 600px) {

    .scz-notification-panel {
        position: fixed;

        top: var(--scz-header-height);

        left: 12px;
        right: 12px;

        width: auto;

        max-width: none;

        max-height:
            calc(
                100vh -
                var(--scz-header-height) -
                20px
            );
    }


    body.admin-bar
    .scz-notification-panel {
        top:
            calc(
                var(--scz-header-height)
                + 46px
            );
    }


    .scz-header-notification-list {
        max-height:
            calc(100vh - 235px);
    }

}


/* ==========================================================
   ACCOUNT DROPDOWN V2
   ========================================================== */

.scz-account-menu {
    margin-left: 5px;
}


.scz-account-panel {
    right: 0;

    width: 292px;

    padding: 8px;

    overflow: hidden;
}


/* USER HEADER */

.scz-account-user {
    display: flex;
    align-items: center;

    gap: 12px;

    padding:
        10px 10px
        12px;
}


.scz-account-user-info {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}


.scz-account-user-info strong {
    max-width: 190px;

    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;

    color: var(--scz-text);

    font-size: 14px;
    font-weight: 700;
}


.scz-account-context-label {
    width: fit-content;

    padding:
        3px 7px;

    border-radius: 999px;

    background:
        color-mix(
            in srgb,
            var(--scz-primary) 8%,
            white
        );

    color: var(--scz-primary) !important;

    font-size: 10px !important;
    font-weight: 650;

    line-height: 1.3;
}


/* MENU SECTION */

.scz-account-menu-section {
    display: flex;
    flex-direction: column;
}


/* MENU ITEM */

.scz-account-menu-item {
    min-height: 41px;

    padding:
        8px 10px;

    display: flex;
    align-items: center;

    gap: 11px;

    border-radius: 9px;

    color: var(--scz-text);

    text-decoration: none;

    font-size: 13px;
    font-weight: 550;

    transition:
        background .15s ease,
        color .15s ease;
}


.scz-account-menu-item:hover {
    background:
        var(--scz-hover);

    color:
        var(--scz-primary);
}


/* STANDARD ICON */

.scz-menu-icon {
    width: 18px;
    height: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    color: var(--scz-muted);
}


.scz-account-menu-item:hover
.scz-menu-icon {
    color: var(--scz-primary);
}


.scz-menu-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* SMALL DOT USED WHERE
   WE HAVE NOT ADDED AN ICON */

.scz-menu-dot {
    width: 5px;
    height: 5px;

    margin:
        0 6px;

    border-radius: 50%;

    background:
        #c3c8d0;

    flex: 0 0 auto;
}


.scz-account-menu-item:hover
.scz-menu-dot {
    background:
        var(--scz-primary);
}


/* DIVIDER */

.scz-menu-divider {
    height: 1px;

    margin:
        6px 3px;

    background:
        var(--scz-border);
}


/* LOGOUT */

.scz-account-menu-item.scz-logout-link
.scz-menu-icon {
    color: #d92d20;
}


.scz-account-trigger {
    min-height: 44px;

    padding:
        3px 5px
        3px 6px;

    border-radius: 999px;

    transition:
        background .15s ease;
}


.scz-account-trigger:hover {
    background:
        var(--scz-hover);
}


.scz-account-menu[open]
.scz-account-trigger {
    background:
        var(--scz-hover);
}


@media (max-width: 600px) {

    .scz-account-panel {
        position: fixed;

        top:
            calc(
                var(--scz-header-height)
                + 8px
            );

        left: 12px;
        right: 12px;

        width: auto;

        max-width: none;
    }


    body.admin-bar
    .scz-account-panel {
        top:
            calc(
                var(--scz-header-height)
                + 54px
            );
    }

}

/* ==========================================================
   ACCOUNT CONTEXT SWITCHER
   ========================================================== */

.scz-account-context-switch {
    padding: 4px 0;
}


.scz-context-switch-button {
    min-height: 62px;

    padding: 10px 11px;

    display: flex;
    align-items: center;

    gap: 11px;

    border-radius: 11px;

    background:
        color-mix(
            in srgb,
            var(--scz-primary) 6%,
            white
        );

    border:
        1px solid
        color-mix(
            in srgb,
            var(--scz-primary) 12%,
            transparent
        );

    color: var(--scz-text);

    text-decoration: none;

    transition:
        background .16s ease,
        border-color .16s ease,
        transform .16s ease;
}


.scz-context-switch-button:hover {
    background:
        color-mix(
            in srgb,
            var(--scz-primary) 9%,
            white
        );

    border-color:
        color-mix(
            in srgb,
            var(--scz-primary) 20%,
            transparent
        );
}


/* ICON */

.scz-context-switch-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 9px;

    background: #ffffff;

    color: var(--scz-primary);

    box-shadow:
        0 1px 3px
        rgba(16, 24, 40, .08);
}


.scz-context-switch-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* TEXT */

.scz-context-switch-content {
    min-width: 0;

    display: flex;
    flex-direction: column;

    flex: 1;

    gap: 2px;
}


.scz-context-switch-content strong {
    color: var(--scz-text);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.3;
}


.scz-context-switch-content small {
    color: var(--scz-muted);

    font-size: 10px;
    font-weight: 450;

    line-height: 1.35;
}


/* ARROW */

.scz-context-switch-arrow {
    color: var(--scz-primary);

    font-size: 16px;
    font-weight: 600;

    transition:
        transform .16s ease;
}


.scz-context-switch-button:hover
.scz-context-switch-arrow {
    transform:
        translateX(2px);
}/* End custom CSS */