/* Disable scrolling for the rest of the application */

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 20rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  list-style: none;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu .dropdown-item {
  background: #f0f5e6;
  color: #080d13;
  border: 0.05rem solid rgb(122, 118, 118);
  border-radius: 10px;
  margin: 0.1rem 0;
  padding: 0.5rem 1rem;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.dropdown-menu li {
  position: relative;
}
.dropdown-menu .dropdown-submenu {
  background: #e9f0ef;
  color: #212529;
  border: 0.05rem solid rgb(24, 21, 21);
  width: fit-content;
  display: none;
  position: absolute;
  left: 100%;
  transform: translateY(-20%);
  max-width: 800px;
  overflow-y: auto;
  max-height: 600px;
}
.dropdown-menu .dropdown-submenu .dropdown-item {
  background: #dff3f0;
  color: #212529;
  border: 0.05rem solid rgb(133, 130, 130);
  border-radius: 10px;
  margin: 0.1rem 0;
  padding: 0.5rem 1rem;
  min-width: 700px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

.count {
  position: relative;
  left: 5%;
  border-radius: 100%;
  background: #da6e10;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1rem;
  text-align: center;
  padding: 0.2rem 0.25rem;
  margin-right: 0.5rem;
}
