.nav_normal {
    position: sticky;
    top: 0px;
    display: flex;
}

.nav_normal > .menu{
    display: flex;
    width: 100%;
    background-color: #ffffff04;
    flex-direction: row;
    padding: 1rem;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    position: absolute;
}

.nav_normal ul, 
.nav_side ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 0;
    flex-basis: 1 200px;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: normal;
    margin: 0px;
}

.nav_normal ul:nth-child(1) {
    gap: 25px;
}

.nav_normal ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav_normal ul li .home {
    color: var(--hovers_buttons_color);
}

.nav_normal ul li a, 
.nav_side ul li a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
}

.nav_normal ul li a button {
    background-color: var(--hovers_buttons_color);
    border: none;
    font-size: 1.2rem;
    font-family: var(--font);
    color: var(--back_nav_color);
    padding: 0.7rem;
    border-radius: 5px;
}

.nav_normal ul li a button:hover {
    cursor: pointer;
    transition: 0.3s;
    background-color: var(--back_footer);
}

.nav_normal ul li a button:active {
    transition: 0.3s;
    background-color: var(--hovers_buttons_color);
}

.nav_normal ul li .line,
.nav_side ul li .line {
    background-color: var(--hovers_buttons_color);
    width: 0%;
    min-height: 2px;
}

.nav_normal ul li a:hover,
.nav_side ul li a:hover {
    color: var(--hovers_buttons_color);
    transition: 0.5s;
}

.nav_normal ul li a:hover + .line,
.nav_side ul li a:hover + .line {
    width: 100%;
    transition: 0.5s;
}

.nav_normal ul li a:not(:hover) + .line {
    width: 0%;
    transition: 0.5s;
}

.drop-btn {
    display: none !important;
}

.menu ul:nth-child(2) .session {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.menu ul:nth-child(2) .session div {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.menu ul .session .error_li:hover {
    color: red !important;
}

.news {
    position: absolute;
    right: -233px;
    top: 17px;
    height: 10px;
    width: 10px;
    background-color: rgb(255, 7, 7);
    border-radius: 100px;
    animation-name: animateNews;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes animateNews {
    to {
        box-shadow: 0px 0px 0px rgb(255, 7, 7);
    }

    from {
        box-shadow: 0px 0px 5px 3px rgb(250, 39, 39);
    }
}


/* Nav side */

.modules {
    display: flex;
    flex-direction: row;
    margin: 0px;
    width: 100%;
    overflow: hidden;
}

.sid_bar {
    transition: all 0.5s;
    width: 0px;
}

.content_body {
    flex: 1;
    padding-top: 0.5rem;
    height: 100vh;
    overflow-y: scroll;
    transition: all 0.5s;
    overflow-x: hidden;
}

.nav_side {
    height: 100%;
    max-height: 100vh;
    padding: 10%;
    padding-top: 5%;
    padding-right: 0;
    box-shadow: 0 0 5px black;
    margin-right: 0.5rem;
    overflow-y: scroll;
}

::-webkit-scrollbar {display: none;}

.image-x {
    width: 15px;
}

.image-x img {
    width: 100%;
}

.image-x:hover {
    cursor: pointer;
}

.nav_side > .menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: var(--back_nav_color);
}

.nav_side > .menu .arrow {
    transform: rotate(270deg);
}

.nav_side .menu ul {
    display: flex;
    flex-direction: column;
}

.nav_side ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav_side ul li div {
    display: flex;
    flex-direction: column;
    position: relative;
}

.nav_side .menu .submenu-dropdown li {
    padding-left: 1rem;
    justify-content: start;
}

.nav_side .menu ul li {
    justify-content: start;
}

.nav_side .menu li .submenu-dropdown {
    overflow: hidden;
}

.image_totate {
    transition: all 0.5s;
    transform: rotate(360deg) !important;
}

.image_totate_revers {
    transition: all 0.5s;
    transform: rotate(270deg) !important;
}

.animation_side_drop_li {
    animation-name: dropdown-li;
    animation-duration: 1.2s;
    animation-iteration-count: 1;
    animation-fill-mode: backwards;
    animation-direction: normal;
}

.animation_side_drop_li_revers {
    animation-name: dropdownOff-li;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-delay: 0s;
    animation-fill-mode: both;
    animation-direction: normal;
}

.navBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left:1rem;
    padding-right: 1rem;
    position: sticky;
    top: 0px;
    z-index: 2;
}

.navBar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navBar ul:last-child {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.earrings_content {
    position: relative;
    cursor: pointer;
}

.earrings {
    background-color: red;
    color: #fff;
    position: absolute;
    border-radius: 100%;
    height: 25px;
    width: 25px;
    top: -4px;
    right: -9px;
    text-align: center;
}


@keyframes nav_side_close {
    0% {
        width: 250px;
        opacity: 50%;
    } 
    100% {
        width: 80px;
        opacity: 100%;
    }
}

@keyframes nav_side_open {
    0% {
        width: 80px;
        opacity: 0;
    } 
    100% {
        width: 250px;
        opacity: 100%;
    }
}

@keyframes dropdownOff-li {
    0% {
        height: 100%;
    }

    90% {
        height: 11%;
    }

    100% {
        height: 100%;
    }
}

@keyframes dropdown-li {
    0% {
        height: 11%;
    }

    100% {
        height: 100%;
    }
}

@media (max-width: 710px) {
    /* .nav_normal {
        position: relative;
        top: 0px;
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: end;
    } */

    /* .nav_normal > .menu {
        width: 100%;
        background-color: var(--back_nav_color);
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 10px;
        align-items: center;
    } */

    .nav_normal ul:first-child {
        list-style: none;
        display: flex;
        flex-direction: column;
        padding: 0;
        flex-basis: 1 200px;
        gap: 10px;
        font-size: 1.25rem;
        font-weight: normal;
    }

    .drop-btn {
        display: flex !important;
        padding-top: 1rem;
        padding-right: 1.5rem;
        padding-bottom: 1rem;
        width: 100%;
        justify-content: end;    
    }

    .menu ul:nth-child(2) .session {
        align-items: center;
        text-align: center;
    }

    .menu ul:nth-child(2) .session a {
        font-size: 17px;
    }
}