.nav-link {
    padding: 0;
    color: #171717;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
}

.nav-link:focus-visible {
    outline: none;
}
.dropdown-item {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active,
.dropdown-item.active,
.dropdown-item:focus,
.dropdown-item:hover {
    color: #171717;
    background-color: transparent;
}

.dropdown-toggle {
    position: relative;
}

.dropdown-menu {
    margin-top: 6px;
    border: none;
    filter: drop-shadow(0px 25px 50px rgba(0, 0, 0, 0.1));
}

.dropdown-item-li {
    transition: all 0.2s ease-in-out;
    position: relative;
}
.item-li-active {
	transform: translateX(10px);
}
.submenu-wrap .submenu {
    position: relative;
}

.dropdown-toggle::after{
    content: url(./icons/arrow.svg);
    position: absolute;
    border: none;
    margin-left: 6px;
    margin-top: -1px;
    opacity: 0.3;
    transition: 0.2s all;
}

.dropdown-toggle:hover::after,
.dropdown-toggle.show::after {
    opacity: 1;
}

.navbar-brand {
    margin: 0;
    text-align: center;
}

li.nav-item.nav-item-icon {
    padding-bottom: 5px;
    margin-left: -2em;
    margin-right: 1em;
}

.nav-item-lang {
    margin-left: -2em;
    margin-right: 2em;
}
 
.nav-item-lang .dropdown-menu{
  min-width: 74px;
}

.menu-items-wrap {
    display: flex;
    justify-content: space-between;
}

.navbar-icons,
.navbar-phone {
    gap: 25px;
    width: fit-content;
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
    animation-duration: 0.4s;
    animation-fill-mode: both;
}

.nav-item.dropdown {
    position: relative;
}

element.style {
    height: 315px;
}
.top-menu-2-content ul.catalog-menu > li > ul {
    width: 140px;
}
.top-menu-2-content .catalog-menu > li > ul {
    position: absolute;
    top: 0;
    left: 180px;
    display: none;
}

.dropdown-menu .first-level-menu .dropdown-item-li a {
    white-space: nowrap;
    padding: 10px 1.5rem;
}

.dropdown-menu[data-bs-popper] {
    margin-top: initial;
    left: initial;
}

.submenu-dropdown-item {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: start;
    font-weight: 500;
    padding: 10px;
    padding-left: 25px;
}

.subdropdown-menu li {
    white-space: nowrap;
    width: 181px;
    transition: all 0.2s ease-in-out;
}

.subdropdown-menu::-webkit-scrollbar {
    width: 7px;
    padding: 5px 0;
}

.subdropdown-menu::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    background-color: #c39e5a2b;
    border-radius: 5px;
    width: 5px;
    margin: 5px 0;
}

.subdropdown-menu::-webkit-scrollbar-track {
    background-color: white;
}


.dropdown div.dropdown-menu {
    background-color: transparent;
    margin: 0;
    padding-top: 20px;
    left: -15px;
    top: 100%;
    width: fit-content;
}

.not-mobile.navbar-header .nav-item.dropdown:first-child:not(.header-cart) .first-level-dropdown{
    left: -2px;
    top: 73%;
}

.dropdown.header-cart .dropdown-menu{
  margin: 0;
  right: -20px;
  left: auto;
  right: -4vw;

}

.header-cart .header-cart-wrap{
  background-color: #fff;
  padding: 22px;
  border-radius: 5px;
}

@keyframes slideIn {
    0% {
        transform: translateY(-1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

@keyframes subdropdownMenu {
    0% {
        transform: translateY(-1rem);

    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

@keyframes subdropdownIn {
    0% {
        transform: translateX(-1px);
        opacity: 0;
        visibility: hidden;
    }
    100% {
        transform: translateX(0rem);
        opacity: 1;
        visibility: visible;
    }
}
