/* navbar.css */

/* Reset default styles */



/* Navbar container */
.navbar {
    position: fixed;
    right: 40px;
    bottom: 7vh;
    z-index: 1000;
}

.nav_icon{
    padding: 10px;
    background-color: var(--button_blue);
    border-radius: 100%;
    position: absolute;
    right: 0px;
    transition: all 0.4s ease-in-out;
    bottom: 0px;
    cursor: pointer;
    /* border: 1px solid #ffffff; */
    box-shadow: 0px 0px 8px rgb(140 140 140 / 50%)
}

.nav_icon:hover{
    /* border: 1px solid var(--color_mode); */
    box-shadow: 0px 8px 8px rgb(140 140 140 / 50%)

}

/* @keyframes navOpenAnimation {
    0% {
        background-color: #f0f0f0;
      }
      50% {
        background-color: #ffffff;
      }
      100% {
        background-color: #f0f0f0;
      }
  }
  
  #navOpen {
    animation: navOpenAnimation 1.5s 4;
  } */

/* .navbar>ul{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
} */

#nav-close-ico{
    display: none;

}
#navOpen{
    background-color: rgb(79, 106, 202);
}
#nav_icon1 {
    opacity: 0;
    bottom: 0px;
    background-color: #00AFF0;
}
#nav_icon2 {
    opacity: 0;
    bottom: 0px;
    background-color: #0088cc;
}
#nav_icon3 {
    opacity: 0;
    bottom: 0px;
    background-color: #25d366;
}
#nav_icon4 {
    opacity: 0;
    bottom: 0px;
    background-color: #03A9F4;
}

/* Navbar links */
/* .navbar a {
    text-decoration: none;
    color: #333;
    padding: 5px;
} */

/* Active link */
/* .navbar a.active {
    font-weight: bold;
} */

/* Hover effect */
/* .navbar a:hover {
    background-color: #ddd;
} */

/* .nav-item>a{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
} */