/* HYDROONE Header Topbar Reflow V1 */
.hydroone-topbar-reflow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    min-height:48px;
    width:100%;
}
.hydroone-topbar-left{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
    min-width:280px;
}
.hydroone-topbar-left a{
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    white-space:nowrap;
}
.hydroone-topbar-right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    flex:1;
    min-width:0;
}
.hydroone-topbar-right form,
.hydroone-topbar-right .header-search{
    display:flex;
    align-items:center;
    gap:0;
    max-width:560px;
    width:100%;
}
.hydroone-topbar-right input[type="search"],
.hydroone-topbar-right input[type="text"]{
    width:100%;
    min-width:240px;
    background:#ffffff;
    color:#0f2747;
    border:1px solid rgba(255,255,255,.22);
    border-radius:10px 0 0 10px;
    padding:12px 14px;
    outline:none;
}
.hydroone-topbar-right button[type="submit"],
.hydroone-topbar-right .search-btn,
.hydroone-topbar-right form button{
    border-radius:0 10px 10px 0;
    border:1px solid #0f2747;
}
.hydroone-topbar-right .language-switcher{
    position:relative;
    flex:0 0 auto;
}
.hydroone-topbar-right .language-current{
    background:rgba(255,255,255,.08);
    color:#ffffff;
    border:1px solid rgba(255,255,255,.22);
    border-radius:10px;
    padding:10px 12px;
}
.hydroone-topbar-right .language-dropdown{
    right:0;
    left:auto;
}
.hydroone-hide-desktop{
    display:none !important;
}
@media (max-width: 1200px){
    .hydroone-topbar-reflow{
        flex-direction:column;
        align-items:stretch;
        padding:8px 0;
    }
    .hydroone-topbar-left,
    .hydroone-topbar-right{
        width:100%;
        justify-content:center;
    }
    .hydroone-topbar-right form,
    .hydroone-topbar-right .header-search{
        max-width:none;
    }
}
@media (max-width: 768px){
    .hydroone-topbar-left{
        gap:10px 16px;
        justify-content:center;
    }
    .hydroone-topbar-left a{
        font-size:13px;
    }
    .hydroone-topbar-right{
        flex-direction:column;
        align-items:stretch;
    }
    .hydroone-topbar-right .language-switcher{
        align-self:center;
    }
    .hydroone-topbar-right input[type="search"],
    .hydroone-topbar-right input[type="text"]{
        min-width:0;
    }
}
