﻿.top-bar {
    background-color: #008EFA;
    max-width:100vw;
    width:100%;
    padding:20px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.top-bar-text{
    font-size:20px;
    color:#FFFFFF;
    font-weight:600;
}
.top-bar-img{
    width:100px;

}
.top-bar-img img{
    object-fit:cover;
}
@media(max-width:992px) {
    .top-bar-text{
        font-size:16px;
    }
    .top-bar-img{
        width:60px;
    }
}

.notification-icon  {
    object-fit: cover;
    width: 20px;
}
.notif-conteiner{
    background-color:#FFFFFF;
    border-radius:12px;
}
.user-icon {
    width: 32px;
    height: 32px;
    object-fit: cover;
}
.navbar-top-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background-color: #F2F2F2
}

@media(max-width:992px){
    .navbar-top-section::after {
        content: none;
    }
}

.navbar-cart {
    background-color: #D91C5C;
    border-radius:15px;
    font-size:16px;
    font-weight:400;
    color:#FFFFFF;
}
.navbar-cart-number{
    display:flex;
    justify-content:center;
    align-items:center;
    width:16px;
    height:16px;
    background-color:rgba(255,255,255,0.25);
    border-radius:100%;
}
.navbar-login-text {
    color: #1E1E1E;
    font-weight: 400;
    font-size: 16px;
}
@media(max-width:992px) {
    .navbar-cart {
        border-radius: 12px;
        font-size: 12px;
    }
    .navbar-login-text {
        color: #1E1E1E;
        font-weight: 400;
        font-size: 14px;
    }
}
.building-icon{
    width:20px;
    object-fit:cover;
}
.mobile-navbar{
    position:absolute;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background-color:#FFFFFF;
    z-index:100;
    padding:48px 24px;
    display:flex;
    flex-direction:column;
}
.close-navbar {
    width: 25px;
    height: 25px;
    border: 2px solid #333333;
    font-size: 16px;
    color: #333333;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:100%;
}
.mobile-nav {
    border-top: 1px solid #F2F2F2;
    padding:0;
    padding-top:40px;
}
.mobile-nav-link {
    color: #1E1E1E !important;
    font-size:16px;
    font-weight:400;
}
    .mobile-nav-link:hover {
        color: #1E1E1E !important;
    }
.collapse-animated {
    transition: height 1s ease, opacity 1s ease;
    overflow: hidden;
}
.product-nav-list-container {
    overflow-y:auto;
    max-height:300px;
}