.menu {
  position: relative;
  background: linear-gradient(
    0.39deg,
    var(--core-red) 0.43%,
    #d6311b 48.26%,
    #d84332 99.66%
  );
  border: none;
  border-radius: 50%;
  padding: 0.625rem;
  cursor: pointer;
  overflow: hidden;
  display: grid !important;
  align-items: center !important;
  height: 1.5rem;
  width: 1.5rem;
}

.menu-button svg {
  height: 1.5rem;
  width: 1.5rem;
}

.menu-items {
  position: absolute;
  top: 124%;
  left: 0;
  background-color: #f9f9f9;
  box-shadow: 0rem 0.75rem 2rem 0.25rem rgba(5, 23, 39, 0.15);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  border-radius: 0.75rem;
}

.menu:hover + .menu-items,
.menu-items:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-items a {
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  color: var(--core-dark);
}

.menu-items a:hover {
  cursor: pointer;
}

.menu_container {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  width: 15rem;
  z-index: 10;
  display: flex;
  justify-content: end;
}
