nav {
  z-index: 1000;
  position: fixed;
  top: 0;
  display: flex;
  height: 80px;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  /* justify-content: space-between; */
  padding: 10px 50px 0 100px;
  flex-wrap: wrap;
  transition: all 0.15s ease;
}

nav .logo {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  /* display: flex; */
}

/* .logoIcon {
  width: 70px !important;
  height: 70px;
  margin-right: 20px;
} */

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav ul #navbarLi {
  margin: 0 5px;
}
nav ul #navbarLi a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul #navbarLi a.active,
nav ul #navbarLi a:hover {
  color: #111;
  background: #fff;
}
nav .menu-btn i {
  padding: 8px 30px;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type='checkbox'] {
  display: none;
}
#rightSideNavDiv {
  margin-left: auto;
  margin-right: 0;
  position: relative;
  display: flex;
}

/* Dropdown Button */
.dropbtn {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  filter: invert(1);
  position: absolute;
  width: 30px;
  left: -40px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
}

.dropbtn:hover {
  border: 3px white solid;
  filter: invert(0);
  background: #fff;
}

#navbarUl li div img {
  transition: all 0.3s ease;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

#dark {
  margin-right: 10px;
}

#divForThemeChanger {
  display: inline-flex;
}

.changeTheme {
  width: 30px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  box-shadow: 4px 4px 16px 0px rgb(0 0 0 / 20%);
  border-radius: 2px;
  margin: 0;
  display: none;
  position: absolute;
  background-color: #1b1b1b;
  left: -85px;
  top: 53px;
  min-width: 160px;
  align-items: left;
  overflow-x: auto;
  z-index: 1;
  max-height: 195px;
  /* border-radius: 10%; */
}
.dropdown-content::-webkit-scrollbar {
  width: 10px;
  background-color: #cccccc;
}
.dropdown-content::-webkit-scrollbar-thumb {
  background-color: #313131;
}
/* Links inside the dropdown */
.dropdown-content a {
  font-size: 20px;
  color: #fff;
  padding: 12px 16px;
  display: block;
}
.dropdown-content button {
  margin: 0 auto;
  padding: 12px 16px;
  display: block;
}
.dropdown-content div {
  align-items: center;
  display: flex;
  padding-bottom: 15px;
}
.dropdown-content div p {
  color: #fff;
  /* margin-top:15px; */
  margin-left: 10px;
  top: 10px;
}

.dropdown-content img {
  width: 30px;
  margin-left: 45px;
}
.translate {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.firstDivInDropdown {
  padding-top: 15px;
}
.translate:hover {
  /* padding-bottom: 5px; */
  width: 40px;
  filter: brightness(140%);
  -webkit-filter: brightness(140%);
  -moz-filter: brightness(140%);
  -o-filter: brightness(140%);
  -ms-filter: brightness(140%);
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: block;
}

@media (max-width: 1200px) {
  nav .menu-btn i {
    display: block;
  }
  #click:checked ~ .menu-btn i:before {
    content: '\f00d';
  }
  nav ul {
    position: fixed;
    top: 80px;
    left: 100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul {
    left: 0;
  }
  nav ul #navbarLi {
    width: 100%;
    margin: 40px 0;
  }
  */ nav ul #navbarLi a {
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul #navbarLi a {
    margin-left: 0px;
  }
  nav ul #navbarLi a.active,
  nav ul #navbarLi a:hover {
    background: none;
    color: cyan;
  }
  .dropbtn {
    top: 3px;
  }
}

@media (max-width: 550px) {
  nav {
    padding: 10px 10px 0 20px;
  }
}
