.title-arrow {
  font-size: 16px;
  color: #fdbe00;
  width: 200px;
  text-align: center;
  font-family: 'Caudex', serif;
  transition: 250ms all;
}

.header-item {
  position: absolute;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 5px 0 5px;
  justify-content: space-between;
  border-radius: 3px;
  border-bottom: 2px solid rgba(92, 81, 81, 0.25) !important;
  
  font-size: 14px;
  background-color: #004996;
  color: #fff;
  box-shadow: rgb(0 0 0 / 12%) 0px 13px 15px -5px,
    rgb(0 0 0 / 35%) 0px 8px 8px -5px;
  cursor: pointer;
  z-index: 1000;
}

#header-item-content {
  position: absolute;
  width: 100%;
  height: auto;
  max-height: 0px;
  top: 32px;
  display: flex;
  flex-direction: column;
  margin-left: -5px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: rgb(0 0 0 / 12%) 0px 13px 15px -5px,
    rgb(0 0 0 / 35%) 0px 8px 8px -5px;
  overflow: hidden;
  transition: 250ms all;
  backdrop-filter: blur(2px);
}

.item-content-button {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  margin-bottom: 2px;
  color: #4b4343;
  background-color: rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(92, 81, 81, 0.1);
}

.item-content-button:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.1);
}

.active-item {
  background-color: #004996 !important;
  color: #fdbe00 !important;
}