#mainNavbar {
    position: relative;
    height: 90px;
    width: 100%;
    background-color: #efefef;
    transition-duration: 0.5s;
}

#mainNavbarContent {
    position: absolute;
    top: 15px;
}

#mainNavbarContent2 {
    position: absolute;
    top: 25px;
    right: 150px;
}

#logoNavbar {
    display: inline-block;
    position: relative;
    left: 40px;
}

#imgNavBar {
    width: 60px;
    height: 60px;
}

#ProdutosNavbar {
    display: inline-block;
    left: 50px;
    position: relative;
    width: max-content;
}

#ProdutosNavbar a {
    font-weight: bold;
    font-size: 20px;
}

#CelularNavbar {
    display: inline-block;
    left: 50px;
    position: relative;
    width: max-content;

}

#CelularNavbar a {
    font-weight: bold;
    font-size: 20px;
}

#SobreNosNavbar {
    display: inline-block;
    left: 50px;
    font-weight: bold;
    position: relative;
    width: max-content;

}

#SobreNosNavbar a {
    font-weight: bold;
    font-size: 20px;
}

#SearchNavbar {
    display: inline-block;
    font-weight: bold;
    position: relative;
}

#searchBar {
    display: inline-block;
    position: relative;
    left: 20px;
    width: 300px;
    height: 40px;
    border-radius: 22px;
    background: none;
    color: rgb(0, 0, 0);
    padding-left: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#searchBar[type="text"],
textarea {
    background: #ffffff;
}

#searchBar::placeholder {
    color: #4f4f4f;
    font-size: 18px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#searchBar:focus {
    outline: none;
}

#imgBackground {
    display: inline-block;
    position: absolute;
    top: 5px;
    width: 39px;
    height: 28px;
    border-radius: 12px;
    background-color: #202020;
    margin-left: -40px;
}

#imgSearchBar {
    position: absolute;
    top: 5px;
    left: 7px;
    width: 25px;
    height: 18px;
}

#imgBackground:hover #imgSearchBar {
    top: 4px;
    left: 6px;
    width: 27px;
    height: 20px;
}

#imgCart {
    position: absolute;
    top: -22px;
    left: 0px;
    width: 37px;
    height: 30px;
}

#cartNavbar {
    display: inline-block;
    position: relative;
    margin-left: 10px;
    top: 0;
}

#cartNavbar a:link {
    text-decoration: none;
}

#searchValue button {
    padding: 0;
    border: none;
    background: none;
}

#cartNumbers {
    position: absolute;
    top: -43px;
    margin-top: 20px;
    margin-left: 35px;
    color: black;
    font-size: 22px;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#tbodySearchBar {
    position: relative;
    display: block;
    background: none;
    padding: 3px;
    position: absolute;
    opacity: 0;
    margin-left: 20px;
    margin-top: 10px;
    z-index: 123;
    border: none;
    border-radius: 13px;
    width: 300px;
    max-height: 240px;
    overflow-y: scroll
}

/* width */
#tbodySearchBar::-webkit-scrollbar {
    position: relative;
    width: 6px;
    margin-left: -25px;
}

/* Track */
#tbodySearchBar::-webkit-scrollbar-track {
    background: rgb(118, 118, 118);
    width: 6px;
    margin-left: 25px;
}

/* Handle */
#tbodySearchBar::-webkit-scrollbar-thumb {
    background: #343434;
    width: 6px;
    margin-left: 25px;
}

/* Handle on hover */
#tbodySearchBar::-webkit-scrollbar-thumb:hover {
    background: #555;
    width: 6px;
    margin-left: 25px;
}

#divMain:hover {
    background-color: #8f8f8f;
}

#menuHamburger {
    display: none;
    position: absolute;
    right: 30px;
    top: 16px;
    height: 45px;
    width: 50px;
    background: rgb(51, 51, 51, 0);
    border-radius: 11px;
    transition-duration: 0.1s;
    cursor: pointer;
}

#traco1 {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    top: 8px;
    height: 5px;
    width: 40px;
    background: rgb(178, 178, 178);
    border-radius: 11px;
}

#traco2 {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    top: 16px;
    height: 5px;
    width: 40px;
    background: rgb(178, 178, 178);
    border-radius: 11px;
}

#traco3 {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    top: 24px;
    height: 5px;
    width: 40px;
    background: rgb(178, 178, 178);
    border-radius: 11px;
}

#traco1, #traco2, #traco3 {
    transition-duration: 0.1s;
}


#menuHamburger:hover #traco1, #menuHamburger:hover #traco2, #menuHamburger:hover #traco3 {
    background: rgb(233, 233, 233);
}

#menuHamburger:hover {
    background: rgb(98, 98, 98);
}




#popUp {
    position: fixed;
    top: 160px;
    right: 0px;
    width: 400px;
    height: 100px;
    border: solid 1px rgb(159, 159, 159);
    background-color: rgba(73, 73, 73, 1);
    z-index: 12333;

    display: none;
}

#popUp p {
    position: absolute;
    display: block;
    left: 50px;
    top: 36px;
    color: rgb(190, 190, 190);
    font-size: 17px;
    font-weight: bold;
    z-index: 12334;
}



#popUp {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
}

.slide-in-popup {
    animation: slide-in 0.7s forwards;
    -webkit-animation: slide-in 0.7s forwards;
}

.slide-out-popup {
    animation: slide-out 0.7s forwards;
    -webkit-animation: slide-out 0.7s forwards;
}

@keyframes slide-in {
    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slide-in {
    100% {
        -webkit-transform: translateX(0%);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

@-webkit-keyframes slide-out {
    0% {
        -webkit-transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(100%);
    }
}


.dropdown-toggle {
    background-color: transparent;
    color: #333;
    border: none;
    padding: 0;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
}

.dropdown-menu {
    background-color: #efefef;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.dropdown-item {
    color: #333;
    font-size: 14px;
    padding: 10px 20px;
    transition: background-color 0.3s ease-in-out;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: #d1d3d5;
}

.dropdown-toggle[aria-expanded="true"] {
    background-color: #e9ecef;
    color: #333;
    border-color: #ccc;
}

.dropdown-submenu {
    position: relative;
    background-color: #efefef;
    width: 100%;
}

.dropdown-menu a {
    text-decoration: none;
    color: black;
}

.dropdown-menu a::before {
    text-decoration: none;
    color: black;
}

.dropdown-submenu .dropdown-menu {
    right: 100%;
    /* Posiciona o submenu à direita */
    top: 0;
    margin-top: 0;
    background-color: #efefef;

}

#dropshow {
    background-color: #efefef;
    max-width: 100%;
    color: black;
    text-decoration: none;
}
#dropshow:hover{
    text-decoration: none;
    color: #000000;
}
.dropdown{
    color: black;
    text-decoration: none;
    width: 250px;
}
/* 
.dropdown a{
    text-decoration: none;
    color: black;
}
.dropdown a::hover{
    color: black; /* Ou a cor desejada para o texto
    color: #c1936b;
    font-weight: bolder;
    transition: color 0.5s ease-in-out;
    text-decoration: none;
}

.dropdown a:active {
    color: #000000;
    text-decoration: none;
}   */ 

/* Altere a cor do texto e do fundo quando o mouse estiver sobre o link */
#dropshow a:hover {
    color: black; /* Cor do texto ao passar o mouse */
    background-color: white; /* Cor de fundo ao passar o mouse */
}

/* Remova a borda de foco padrão */
#dropshow a:focus {
    outline: none;
}

/* Altere a cor do texto no menu principal */
#navbarDropdownProdutos {
    color: black;
}

/* Altere a cor do texto nos submenus */
#navbarDropdownRoupas,
#navbarDropdownAcessorios
#navbarDropdownSapatos{
    color: black;
}

/* Altere a cor de fundo dos submenus */
.dropdown-submenu .dropdown-menu {
    background-color: #d1d3d5;
    left: 100%;
    top: 0;
    margin-top: 0;
}

/* Remova a borda que geralmente aparece em links clicáveis */
#dropshow a {
    border: none; /* Remova a borda */
    text-decoration: none; /* Remova o sublinhado */
}

/* Altere a cor do texto e do fundo quando o mouse estiver sobre o link */
.dropdown-submenu .dropdown-menu a:hover {
    color: black; /* Cor do texto ao passar o mouse */
    background-color: #c1936b; /* Cor de fundo ao passar o mouse */
}

/* Altere a cor do texto e do fundo quando o link estiver ativo (clique) */
.dropdown-submenu .dropdown-menu a:focus, .dropdown-submenu.dropdown-menu a:active {
    color: black; /* Cor do texto quando ativo */
    background-color: #a8a2a2; /* Cor de fundo quando ativo */
    text-decoration: none;
}

/* Remova a borda que geralmente aparece em links clicáveis */
.dropdown-submenu .dropdown a {
    border: none; /* Remova a borda */
    text-decoration: none; /* Remova a sublinhado */
}

@media (max-width: 1015px) {
    #cartNavbar {
        display: inline-block;
        position: relative;
        margin-left: 260px; /* Reduza o valor do margin-left para ajustar o posicionamento */
        bottom: 0px;
    }
    
    #imgCart {
        position: absolute;
        top: 129px;
        width: 37px;
        height: 30px;
    }

    #cartNumbers {
        position: absolute;
        top: 110px;
        margin-top: 20px;
        margin-left: 35px;
        color: black;
        font-size: 22px;
        font-weight: bold;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }
}

@media (max-width: 768px) {
    #produtosNavbar{
        background-color: #000000;
    }
}
