
.navbar {
  padding: 0px;
  background-color: #010d10;
  display: flex;
  font-family: sans-serif;
  font-size: 1.2rem;
  color: white;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-link {
  padding-right: 15px;
}

.navbar-link a.nav-link {
  color:white;
  text-decoration: none;  
}

/* .navbar-link a.nav-link:focus {
  color:red;
} */

.navbar-link a.nav-link:hover {
  color:rgb(146, 114, 114);
}

.navbar-items {
  display: flex;
  align-self: center;
}

.navbar-items-left {
  justify-content: flex-start;
}

.navbar-items-right {
  margin-left:auto;
  justify-content: flex-end;
}

.navbar-link-toggle {
  display: none;
}

.dropdown-content a.divider {
  height: 1px;
  background-color: #eee;
  border-bottom: 1px solid black;
  margin: 0px;
  padding: 0px;
}

/* DROPDOWN */
.dropdown {
  cursor: pointer;
  overflow: visible;
  color: inherit;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  position: absolute;
  display: none;
  background-color: #f1f1f1;
  border-radius: 5px;
  /* min-width: 160px; */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: 60px;
}

.dropdown:hover {
  color:rgb(146, 114, 114);
  text-decoration: none;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  /* background-color: #ddd; */
  color: #909090
}

.dropdown-content-show {
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 768px) {

  .navbar-link {
    margin-bottom: 10px;
  }

  .navbar-items,
  .navbar {
    flex-direction: column;
  }

  .navbar-items {
    display:none;
  }

  .navbar-items {
    align-self:flex-start;
    margin-left: 5px;
  }

  .navbar-items-right {
    margin-left: 5px;
    margin-bottom: 5px;
  }

  .navbar-toggleShow {
    display: flex;
  }

  .navbar-link-toggle {
    display: flex;
    align-self: flex-end;
    font-size: 30px;
    display: initial;
    position: absolute;
    top:25px;
   } 
}