.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
}

.hide-backdrop {
  display: none;
}

/* Dropdown Button */
.dropbtn {
  background-color: #e7ebee;
  color: black;
  padding: 12px;
  border: 1px solid #dbdbdb;
  border-radius: 100%;
  cursor: pointer;
  width: 46px;
  height: 46px;
}
.dropbtn img {
  margin: auto auto;
  display: block;
}

/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
  background-color: #dbdbdb;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 999999;
  margin: 0 auto;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  font-family: "Roboto", sans-serif;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 140px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: 0;
}

/* Links inside the dropdown */
.dropdown-content div {
  color: black;
  padding: 10px 10px;
  text-decoration: none;
  display: table;
  width: 100%;
  cursor: pointer;
}

/* Change color of dropdown links on hover */
.dropdown-content div: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;
}

.middle {
  vertical-align: middle;
}
