.nt-header-v2{
    --nt-header-navy:#0b1f3a;
    --nt-header-primary:#123a6d;
    --nt-header-blue:#2563eb;
    --nt-header-blue-soft:#eff6ff;
    --nt-header-green:#0f766e;
    --nt-header-surface:#ffffff;
    --nt-header-soft:#f8fafc;
    --nt-header-line:#e5e7eb;
    --nt-header-text:#0f172a;
    --nt-header-muted:#64748b;
    --nt-header-danger:#e11d48;
    position:relative;
    z-index:1000;
    width:100%;
    color:var(--nt-header-text);
    font-family:inherit;
    letter-spacing:0;
}

.nt-header-v2,
.nt-header-v2 *{
    box-sizing:border-box;
}

.nt-header-v2--sticky{
    position:relative;
    min-height:80px;
}

.nt-header-v2--sticky.is-scrolled .nt-header-v2__bar{
    position:fixed;
    z-index:1000;
    top:0;
    right:0;
    left:0;
    width:100%;
}

.nt-header-v2__bar{
    position:relative;
    min-height:80px;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid var(--nt-header-line);
    transition:box-shadow 180ms ease,background-color 180ms ease;
}

.nt-header-v2.is-scrolled .nt-header-v2__bar{
    background:rgba(255,255,255,.96);
    box-shadow:0 12px 30px rgba(15,23,42,.09);
    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px);
}

.nt-header-v2__container{
    position:relative;
    width:min(1400px,calc(100% - 40px));
    min-height:80px;
    display:flex;
    align-items:center;
    gap:22px;
    margin:0 auto;
}

.nt-header-v2 a{
    text-decoration:none;
}

.nt-header-v2 button{
    margin:0;
    padding:0;
    border:0;
    border-radius:0;
    background:none;
    color:inherit;
    font:inherit;
    letter-spacing:0;
    cursor:pointer;
    -webkit-appearance:none;
    appearance:none;
}

.nt-header-v2__brand{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    min-height:48px;
}

.nt-header-v2__logo{
    display:block;
    width:177px;
    height:auto;
    max-height:40px;
    object-fit:contain;
}

.nt-nav{
    min-width:0;
    flex:1 1 auto;
    align-self:stretch;
}

.nt-nav__list{
    height:100%;
    display:flex;
    align-items:stretch;
    justify-content:flex-start;
    gap:0;
    margin:0;
    padding:0;
    list-style:none;
}

.nt-nav__item{
    position:static;
    display:flex;
    align-items:stretch;
    margin:0;
    padding:0;
}

.nt-nav__link,
.nt-nav__trigger{
    position:relative;
    min-height:80px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:0 10px !important;
    color:#334155 !important;
    white-space:nowrap;
    font-size:14px !important;
    font-weight:650 !important;
    line-height:1.2 !important;
    transition:color 160ms ease,background-color 160ms ease;
}

.nt-nav__trigger i{
    font-size:9px;
    transition:transform 160ms ease;
}

.nt-nav__link::after,
.nt-nav__trigger::after{
    content:"";
    position:absolute;
    right:10px;
    bottom:0;
    left:10px;
    height:3px;
    background:var(--nt-header-blue);
    transform:scaleX(0);
    transform-origin:center;
    transition:transform 160ms ease;
}

.nt-nav__link:hover,
.nt-nav__trigger:hover,
.nt-nav__item.is-open > .nt-nav__trigger,
.nt-nav__item.is-active > .nt-nav__link,
.nt-nav__item.is-active > .nt-nav__trigger{
    color:var(--nt-header-primary) !important;
    background:#f8fafc;
}

.nt-nav__item.is-open > .nt-nav__trigger i{
    transform:rotate(180deg);
}

.nt-nav__item.is-open > .nt-nav__trigger::after,
.nt-nav__item.is-active > .nt-nav__link::after,
.nt-nav__item.is-active > .nt-nav__trigger::after{
    transform:scaleX(1);
}

.nt-mega[hidden],
.nt-header-account__menu[hidden],
.nt-mobile-nav__panel[hidden]{
    display:none !important;
}

.nt-mega{
    position:absolute;
    top:100%;
    right:0;
    left:0;
    padding-top:10px;
    color:var(--nt-header-text);
    animation:nt-header-menu-in 180ms ease both;
}

.nt-mega__surface{
    max-height:calc(100vh - 108px);
    overflow:auto;
    padding:24px;
    background:var(--nt-header-surface);
    border:1px solid #dbe3ec;
    border-radius:10px;
    box-shadow:0 22px 55px rgba(15,23,42,.16);
}

.nt-mega__heading{
    display:flex;
    flex-direction:column;
    gap:4px;
    margin:0 0 18px;
    padding:0 0 16px;
    border-bottom:1px solid var(--nt-header-line);
}

.nt-mega__heading span{
    color:var(--nt-header-blue);
    font-size:11px;
    font-weight:800;
    line-height:1.3;
    text-transform:uppercase;
}

.nt-mega__heading strong{
    color:var(--nt-header-navy);
    font-size:19px;
    font-weight:800;
    line-height:1.3;
}

.nt-mega__heading--inline{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.nt-mega__heading--inline > div{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.nt-mega__heading-link{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0 14px;
    color:var(--nt-header-blue) !important;
    background:var(--nt-header-blue-soft);
    border-radius:7px;
    font-size:13px;
    font-weight:800;
}

.nt-mega__heading-link:hover{
    background:#dbeafe;
}

.nt-mega__layout{
    display:grid;
    gap:20px;
    align-items:stretch;
}

.nt-mega__layout--hosting,
.nt-mega__layout--servers,
.nt-mega__layout--digital{
    grid-template-columns:minmax(0,1.25fr) minmax(0,1fr) 260px;
}

.nt-mega__layout--software{
    grid-template-columns:minmax(0,1fr) 280px;
}

.nt-mega__section{
    min-width:0;
}

.nt-mega__section h3,
.nt-mega__license-group h3{
    margin:0 0 10px;
    color:var(--nt-header-muted);
    font-size:11px;
    font-weight:800;
    line-height:1.3;
    text-transform:uppercase;
}

.nt-mega__items{
    display:grid;
    grid-template-columns:1fr;
    gap:4px;
}

.nt-mega__layout--hosting .nt-mega__section:first-child .nt-mega__items,
.nt-mega__items--three{
    grid-template-columns:repeat(2,minmax(0,1fr));
}

.nt-mega__item{
    min-width:0;
    min-height:58px;
    display:grid;
    grid-template-columns:38px minmax(0,1fr);
    align-items:center;
    gap:10px;
    padding:8px;
    color:var(--nt-header-text) !important;
    border-radius:8px;
    transition:background-color 160ms ease,color 160ms ease;
}

.nt-mega__item:hover,
.nt-mega__item:focus-visible{
    color:var(--nt-header-primary) !important;
    background:var(--nt-header-soft);
}

.nt-mega__icon{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--nt-header-blue);
    background:var(--nt-header-blue-soft);
    border-radius:7px;
    font-size:15px;
}

.nt-mega__copy{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:3px;
}

.nt-mega__copy strong{
    overflow-wrap:anywhere;
    color:inherit;
    font-size:13px;
    font-weight:750;
    line-height:1.35;
}

.nt-mega__copy small{
    display:block;
    overflow:hidden;
    overflow-wrap:anywhere;
    color:var(--nt-header-muted);
    font-size:11px;
    font-weight:500;
    line-height:1.4;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.nt-header-v2--hide-descriptions .nt-mega__copy small{
    display:none;
}

.nt-header-v2--hide-descriptions .nt-mega__item{
    min-height:50px;
}

.nt-mega__cta{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:22px;
    background:var(--nt-header-soft);
    border-left:3px solid var(--nt-header-blue);
    border-radius:8px;
}

.nt-mega__cta-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
    color:#fff;
    background:var(--nt-header-primary);
    border-radius:8px;
    font-size:17px;
}

.nt-mega__cta strong{
    margin:0 0 8px;
    color:var(--nt-header-navy);
    font-size:17px;
    font-weight:800;
    line-height:1.35;
}

.nt-mega__cta p{
    margin:0 0 18px;
    color:var(--nt-header-muted);
    font-size:12px;
    line-height:1.55;
}

.nt-mega__cta a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--nt-header-blue) !important;
    font-size:13px;
    font-weight:800;
}

.nt-mega__cta a:hover{
    color:var(--nt-header-primary) !important;
}

.nt-mega__license-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.nt-mega__license-group{
    min-width:0;
    padding:14px;
    background:var(--nt-header-soft);
    border:1px solid #edf1f5;
    border-radius:8px;
}

.nt-mega__license-group ul{
    display:grid;
    gap:2px;
    margin:0;
    padding:0;
    list-style:none;
}

.nt-mega__license-group li{
    margin:0;
    padding:0;
}

.nt-mega__license-group a{
    min-height:34px;
    display:flex;
    align-items:center;
    gap:8px;
    padding:5px 7px;
    color:#334155 !important;
    border-radius:6px;
    font-size:13px;
    font-weight:650;
}

.nt-mega__license-group a i{
    color:var(--nt-header-green);
    font-size:9px;
}

.nt-mega__license-group a:hover{
    color:var(--nt-header-primary) !important;
    background:#fff;
}

.nt-mega__items--corporate{
    grid-template-columns:repeat(5,minmax(0,1fr));
}

.nt-header-actions{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:6px;
}

.nt-header-actions__icon,
.nt-header-actions__currency,
.nt-header-actions__language,
.nt-header-account__trigger,
.nt-header-cart,
.nt-header-mobile-toggle{
    min-width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#334155 !important;
    background:#fff;
    border:1px solid var(--nt-header-line) !important;
    border-radius:8px !important;
    transition:color 160ms ease,border-color 160ms ease,background-color 160ms ease,box-shadow 160ms ease;
}

.nt-header-actions__icon:hover,
.nt-header-actions__currency:hover,
.nt-header-actions__language:hover,
.nt-header-account__trigger:hover,
.nt-header-cart:hover,
.nt-header-mobile-toggle:hover{
    color:var(--nt-header-primary) !important;
    background:var(--nt-header-soft);
    border-color:#cbd5e1 !important;
}

.nt-header-actions__support{
    gap:7px;
    padding:0 11px;
    font-size:13px;
    font-weight:700;
}

.nt-header-actions__currency{
    gap:6px;
    padding:0 10px !important;
    font-size:12px !important;
    font-weight:800 !important;
}

.nt-header-actions__currency i{
    font-size:8px;
}

.nt-header-actions__language img{
    display:block;
    width:22px;
    height:16px;
    object-fit:cover;
    border-radius:2px;
}

.nt-header-account{
    position:relative;
}

.nt-header-account__trigger{
    gap:8px;
    padding:0 12px !important;
    font-size:13px !important;
    font-weight:750 !important;
}

.nt-header-account__trigger i:last-child{
    font-size:8px;
}

.nt-header-account__trigger[aria-expanded="true"]{
    color:var(--nt-header-primary) !important;
    background:var(--nt-header-soft);
}

.nt-header-account__menu{
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    width:245px;
    display:grid;
    gap:4px;
    padding:10px;
    background:#fff;
    border:1px solid var(--nt-header-line);
    border-radius:9px;
    box-shadow:0 18px 45px rgba(15,23,42,.16);
    animation:nt-header-menu-in 160ms ease both;
}

.nt-header-account__menu a{
    min-height:42px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 10px;
    color:#334155 !important;
    border-radius:7px;
    font-size:13px;
    font-weight:700;
}

.nt-header-account__menu a:hover{
    color:var(--nt-header-primary) !important;
    background:var(--nt-header-soft);
}

.nt-header-account__menu a i{
    width:18px;
    color:var(--nt-header-blue);
    text-align:center;
}

.nt-header-account__menu .nt-header-account__primary{
    color:#fff !important;
    background:var(--nt-header-primary);
}

.nt-header-account__menu .nt-header-account__primary:hover{
    color:#fff !important;
    background:#0f315d;
}

.nt-header-account__menu .nt-header-account__primary i{
    color:#fff;
}

.nt-header-cart{
    position:relative;
    font-size:16px;
}

.nt-header-cart__count{
    position:absolute;
    top:-6px;
    right:-6px;
    min-width:19px;
    height:19px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 5px;
    color:#fff;
    background:var(--nt-header-danger);
    border:2px solid #fff;
    border-radius:10px;
    font-size:10px;
    font-weight:800;
    line-height:1;
}

.nt-header-cart.is-empty .nt-header-cart__count{
    color:var(--nt-header-muted);
    background:#e2e8f0;
}

.nt-header-mobile-toggle,
.nt-mobile-nav,
.nt-mobile-nav__overlay{
    display:none;
}

.nt-header-v2 :focus-visible{
    outline:3px solid rgba(37,99,235,.35);
    outline-offset:2px;
}

body.nt-mobile-nav-open{
    overflow:hidden !important;
}

body.nt-mobile-nav-open .ntc-floating-actions{
    visibility:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
}

@keyframes nt-header-menu-in{
    from{opacity:0;transform:translateY(-6px)}
    to{opacity:1;transform:translateY(0)}
}

@media only screen and (max-width:1360px) and (min-width:1181px){
    .nt-header-v2__container{
        width:calc(100% - 28px);
        gap:14px;
    }

    .nt-header-v2__logo{
        width:158px;
    }

    .nt-nav__link,
    .nt-nav__trigger{
        padding-right:7px !important;
        padding-left:7px !important;
        font-size:13px !important;
    }

    .nt-header-actions__support span{
        display:none;
    }

    .nt-header-actions__support{
        padding:0;
    }

    .nt-header-account__trigger span{
        max-width:75px;
        overflow:hidden;
        text-overflow:ellipsis;
    }
}

@media only screen and (max-width:1180px){
    .nt-header-v2--sticky{
        min-height:68px;
    }

    .nt-header-v2__bar,
    .nt-header-v2__container{
        min-height:68px;
    }

    .nt-header-v2__container{
        width:calc(100% - 32px);
        gap:14px;
    }

    .nt-header-v2__logo{
        width:155px;
        max-height:36px;
    }

    .nt-nav,
    .nt-header-actions__support,
    .nt-header-actions__currency,
    .nt-header-actions__language,
    .nt-header-account{
        display:none !important;
    }

    .nt-header-actions{
        margin-left:auto;
    }

    .nt-header-mobile-toggle{
        display:inline-flex;
        flex-direction:column;
        gap:4px;
    }

    .nt-header-mobile-toggle span{
        width:18px;
        height:2px;
        display:block;
        background:currentColor;
        border-radius:1px;
    }

    .nt-mobile-nav__overlay{
        position:fixed;
        z-index:1001;
        inset:0;
        display:block;
        visibility:hidden;
        opacity:0;
        background:rgba(11,31,58,.48);
        transition:opacity 180ms ease,visibility 180ms ease;
    }

    .nt-mobile-nav{
        position:fixed;
        z-index:1002;
        top:0;
        right:0;
        bottom:0;
        width:min(390px,calc(100% - 24px));
        display:flex;
        flex-direction:column;
        visibility:hidden;
        background:#fff;
        box-shadow:-18px 0 45px rgba(15,23,42,.2);
        transform:translateX(105%);
        transition:transform 200ms ease,visibility 200ms ease;
    }

    .nt-header-v2.is-mobile-open .nt-mobile-nav__overlay{
        visibility:visible;
        opacity:1;
    }

    .nt-header-v2.is-mobile-open .nt-mobile-nav{
        visibility:visible;
        transform:translateX(0);
    }

    .nt-mobile-nav__header{
        flex:0 0 68px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:0 16px;
        border-bottom:1px solid var(--nt-header-line);
    }

    .nt-mobile-nav__header a{
        min-height:44px;
        display:flex;
        align-items:center;
    }

    .nt-mobile-nav__header img{
        display:block;
    }

    .nt-mobile-nav__header img{
        width:159px;
        height:auto;
        max-height:36px;
        object-fit:contain;
    }

    .nt-mobile-nav__header button{
        width:44px;
        height:44px;
        display:flex;
        align-items:center;
        justify-content:center;
        color:var(--nt-header-navy);
        background:var(--nt-header-soft);
        border:1px solid var(--nt-header-line);
        border-radius:8px;
        font-size:18px;
    }

    .nt-mobile-nav__body{
        flex:1 1 auto;
        overflow-y:auto;
        overscroll-behavior:contain;
        padding:12px 16px 24px;
    }

    .nt-mobile-nav__list{
        display:grid;
        gap:2px;
        margin:0;
        padding:0;
        list-style:none;
    }

    .nt-mobile-nav__list li{
        margin:0;
        padding:0;
    }

    .nt-mobile-nav__direct,
    .nt-mobile-nav__group > button{
        width:100%;
        min-height:52px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:12px;
        padding:0 10px !important;
        color:var(--nt-header-text) !important;
        border-bottom:1px solid #edf1f5 !important;
        font-size:15px !important;
        font-weight:750 !important;
        text-align:left;
    }

    .nt-mobile-nav__direct i,
    .nt-mobile-nav__group > button i{
        color:var(--nt-header-muted);
        font-size:11px;
        transition:transform 160ms ease;
    }

    .nt-mobile-nav__group > button[aria-expanded="true"]{
        color:var(--nt-header-primary) !important;
    }

    .nt-mobile-nav__group > button[aria-expanded="true"] i{
        transform:rotate(180deg);
    }

    .nt-mobile-nav__panel{
        display:grid;
        gap:2px;
        padding:7px 8px 10px 16px;
        background:var(--nt-header-soft);
        border-bottom:1px solid var(--nt-header-line);
    }

    .nt-mobile-nav__panel a{
        min-height:44px;
        display:flex;
        align-items:center;
        padding:8px 10px;
        color:#475569 !important;
        border-radius:7px;
        font-size:13px;
        font-weight:650;
        line-height:1.4;
    }

    .nt-mobile-nav__panel a:hover,
    .nt-mobile-nav__panel a:focus-visible{
        color:var(--nt-header-primary) !important;
        background:#fff;
    }

    .nt-mobile-nav__panel .nt-mobile-nav__all{
        justify-content:space-between;
        color:var(--nt-header-blue) !important;
        background:var(--nt-header-blue-soft);
        font-weight:800;
    }

    .nt-mobile-nav__subheading{
        display:block;
        padding:12px 10px 4px;
        color:var(--nt-header-muted);
        font-size:10px;
        font-weight:800;
        text-transform:uppercase;
    }

    .nt-mobile-nav__preferences{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:8px;
        margin-top:18px;
        padding-top:16px;
        border-top:1px solid var(--nt-header-line);
    }

    .nt-mobile-nav__preferences button{
        min-height:48px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:8px;
        padding:8px 10px !important;
        background:var(--nt-header-soft);
        border:1px solid var(--nt-header-line);
        border-radius:8px;
        text-align:left;
    }

    .nt-mobile-nav__preferences button span{
        color:var(--nt-header-muted);
        font-size:11px;
    }

    .nt-mobile-nav__preferences button strong{
        color:var(--nt-header-navy);
        font-size:12px;
    }

    .nt-mobile-nav__account{
        display:grid;
        gap:8px;
        margin-top:14px;
    }

    .nt-mobile-nav__account a{
        min-height:46px;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;
        padding:8px 12px;
        color:var(--nt-header-primary) !important;
        border:1px solid var(--nt-header-line);
        border-radius:8px;
        font-size:13px;
        font-weight:800;
    }

    .nt-mobile-nav__account .nt-mobile-nav__account-primary{
        color:#fff !important;
        background:var(--nt-header-primary);
        border-color:var(--nt-header-primary);
    }
}

@media only screen and (max-width:480px){
    .nt-header-v2__container{
        width:calc(100% - 24px);
        gap:8px;
    }

    .nt-header-v2__logo{
        width:148px;
    }

    .nt-header-cart,
    .nt-header-mobile-toggle{
        min-width:44px;
        width:44px;
        height:44px;
    }

    .nt-mobile-nav{
        width:100%;
    }
}

@media only screen and (max-width:375px){
    .nt-header-v2__logo{
        width:138px;
    }

    .nt-header-actions{
        gap:4px;
    }

    .nt-mobile-nav__header img{
        width:145px;
    }
}

@media (prefers-reduced-motion:reduce){
    .nt-header-v2 *,
    .nt-header-v2 *::before,
    .nt-header-v2 *::after{
        scroll-behavior:auto !important;
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }
}

@media print{
    .nt-header-v2{
        display:none !important;
    }
}


/* Nettescil Header V3 utility layer */
.nt-header-v3.nt-header-v2--sticky{
    min-height:124px;
}

.nt-header-v3 .nt-header-v2__utility{
    position:relative;
    z-index:1001;
    min-height:44px;
    color:#f8fafc;
    background:#192a47;
    border-bottom:1px solid rgba(255,255,255,.12);
    transition:max-height 180ms ease,opacity 180ms ease,visibility 180ms ease;
}

.nt-header-v3 .nt-header-v2__utility-inner{
    width:min(1400px,calc(100% - 40px));
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    margin:0 auto;
}

.nt-header-v3 .nt-header-v2__utility-start,
.nt-header-v3 .nt-header-v2__utility-end{
    min-width:0;
    display:flex;
    align-items:center;
    gap:14px;
}

.nt-header-v3 .nt-header-v2__utility-end{
    justify-content:flex-end;
}

.nt-header-v3 .nt-header-v2__utility-link,
.nt-header-v3 .nt-header-v2__utility-language{
    min-height:32px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:rgba(248,250,252,.78) !important;
    font-size:13px;
    font-weight:550;
    line-height:1.2;
    white-space:nowrap;
    transition:color 160ms ease,background-color 160ms ease;
}

.nt-header-v3 .nt-header-v2__utility-link:hover,
.nt-header-v3 .nt-header-v2__utility-link:focus-visible,
.nt-header-v3 .nt-header-v2__utility-language:hover,
.nt-header-v3 .nt-header-v2__utility-language:focus-visible,
.nt-header-v3 .nt-header-v2__utility-link--strong{
    color:#fff !important;
}

.nt-header-v3 .nt-header-v2__utility-link i{
    color:rgba(255,255,255,.68);
    font-size:13px;
}

.nt-header-v3 .nt-header-v2__utility-link--strong{
    font-weight:750;
}

.nt-header-v3 .nt-header-v2__utility-separator{
    width:1px;
    height:16px;
    flex:0 0 1px;
    background:rgba(255,255,255,.2);
}

.nt-header-v3 .nt-header-v2__utility-language{
    padding:0 7px !important;
    color:#f8fafc !important;
    border:1px solid rgba(255,255,255,.18) !important;
    border-radius:6px !important;
}

.nt-header-v3 .nt-header-v2__utility-language:hover,
.nt-header-v3 .nt-header-v2__utility-language:focus-visible{
    background:rgba(255,255,255,.09);
    border-color:rgba(255,255,255,.32) !important;
}

.nt-header-v3 .nt-header-v2__utility-language.is-static{
    padding:0 !important;
    border:0 !important;
}

.nt-header-v3 .nt-header-v2__utility-language img{
    display:block;
    width:20px;
    height:14px;
    object-fit:cover;
    border-radius:2px;
}

.nt-header-v3 .nt-header-v2__utility-language i{
    color:rgba(255,255,255,.66);
    font-size:8px;
}

.nt-header-v3.is-scrolled{
    min-height:80px;
}

.nt-header-v3.is-scrolled .nt-header-v2__utility{
    max-height:0;
    min-height:0;
    overflow:hidden;
    visibility:hidden;
    opacity:0;
    pointer-events:none;
}

.nt-header-v3 .nt-header-account__trigger{
    color:#fff !important;
    background:var(--nt-header-danger);
    border-color:var(--nt-header-danger) !important;
}

.nt-header-v3 .nt-header-account__trigger:hover,
.nt-header-v3 .nt-header-account__trigger[aria-expanded="true"]{
    color:#fff !important;
    background:#be123c;
    border-color:#be123c !important;
}

.nt-header-v3 .nt-mobile-nav__account .nt-mobile-nav__account-primary{
    color:#fff !important;
    background:var(--nt-header-danger);
    border-color:var(--nt-header-danger);
}

@media only screen and (max-width:1360px) and (min-width:1181px){
    .nt-header-v3 .nt-header-v2__utility-inner{
        width:calc(100% - 28px);
    }
}

@media only screen and (max-width:1180px){
    .nt-header-v3.nt-header-v2--sticky,
    .nt-header-v3.is-scrolled{
        min-height:68px;
    }

    .nt-header-v3 .nt-header-v2__utility{
        display:none;
    }

    .nt-header-v3 .nt-header-v2__bar,
    .nt-header-v3 .nt-header-v2__container{
        min-height:68px;
    }
}

@media only screen and (max-width:480px){
    .nt-header-v3 .nt-header-v2__utility-inner{
        width:calc(100% - 24px);
    }
}
