
.drop-down-hover {
  position: relative;
  display: inline-block;

}

.drop-down-hover-btn {
  background: none;
  color: white;
  padding: 0px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 13px;
}

.drop-down-hover-btn .arrow {
  margin-left: 10px;
}

.drop-down-hover-content {
  position: absolute;
  z-index: 1;
  height: 0px;
  /* max-height: 0px; */
  opacity: 0;

  transition: all .15s ease-in-out;

  overflow: hidden;
}

.drop-down-hover-content-inner {
  display: flex;
  min-width: 160px;
  padding-top: 30px;

  flex-direction: column;
  row-gap: 24px;

}

.drop-down-content a {
  color: white;
  text-decoration: none;

  font-weight: 400;
  display: block;
}

.header-option-container {
  padding-bottom: 5px;
}

.drop-down-hover-btn::after {
  position: absolute;
  display: block;
  content: "";
  top: calc(auto + 10px);
  bottom: 0;
  left: 50%;
  right: auto;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all .15s ease-in-out;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.header-option-container-show-border:after, .header-option-container:hover>.drop-down-hover-btn:after {
  left: 15% !important;
  width: 70% !important;
}