.cookie {
  display: flex;
  padding: 34px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: fixed;
  z-index: 999;
  border-radius: 24px;
  background: var(--system-colors-white-opacity, rgba(255, 255, 255, 0.36));
  backdrop-filter: blur(14px);
}

.header-features {
  position: relative;
  height: max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
}

.header-features .hire-container {
  width: 100%;
  padding: 12px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 48px;
  text-align: center;
  color: white;
  transition: all 0.3s ease-in;
}

.header-features .arrow-circle {
  min-width: 45px;
  min-height: 45px;
  border-radius: 100%;
  transition: all 0.3s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-features .arrow-circle svg {
  color: #000000;
  transition: all 0.3s ease-in;
  transform: rotate(0deg);
}

.header-features:hover .hire-container {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
}

.header-features:hover .arrow-circle {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-features:hover .arrow-circle svg {
  color: #000000;
}
.cookie .dropdown {
  display: flex;
}
