.header-footer {
  position: relative;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 0.6rem;
  cursor: pointer;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow);
  position: relative;
  margin: 0;
}

.bx {
  font-size: 1.1rem;
}

.dropdown {
  position: absolute;
  /* width: 250px; */
  /* margin-top: 0.3rem; */
  visibility: hidden;
  opacity: 0;
  right: 0;
  top: 35px;

  white-space: nowrap;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown a {
  width: 100%;
  min-width: 150px;
  color: #273050;
  background: #fff;

  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 500;
  font-style: normal;
  white-space: nowrap;
  display: block !important;
  position: relative;
}

.show {
  visibility: visible;
  opacity: 1;
}

.dropdown a:hover {
  background: #6d48ff;
  color: #fff;
}
