/**
==========================================================
Digital Nation Inn
Topbar
==========================================================
*/

.dni-topbar{
    background:#043F9C;
    color:#ffffff;
    font-size:.9rem;
    padding:10px 0;
}

.dni-topbar a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.dni-topbar a:hover{
    color:#DDF7D6;
}

.dni-topbar .topbar-left,
.dni-topbar .topbar-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.dni-topbar .topbar-right{
    justify-content:flex-end;
}

.dni-topbar .social-links{
    display:flex;
    gap:12px;
}

.dni-topbar .social-links a{
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.dni-topbar .social-links a:hover{
    background:#ffffff;
    color:#043F9C;
}

@media(max-width:991px){

    .dni-topbar{
        text-align:center;
    }

    .dni-topbar .topbar-left,
    .dni-topbar .topbar-right{
        justify-content:center;
        margin-bottom:8px;
        flex-wrap:wrap;
    }

}

@media(max-width:576px){

    .dni-topbar{
        font-size:.8rem;
        padding:8px 0;
    }

}