.hidden-search {
  display: none !important;
}
.vsb-menu {
  background-clip: padding-box;
  background-color: var(--color-black);
  border-radius: 0;
  overflow: hidden;
  padding: 12rem 23rem;
  border: 1px solid var(--color-gold);
  cursor: pointer;
  display: block;
  position: absolute;
  visibility: hidden;
  z-index: 1000;
  min-width: 100%;
  max-width: none;
  width: 100%;
  text-align: left;
  box-shadow: none;
  left: -5rem;
  top: calc(100% + 8rem);
}
.vsb-menu ul {
  cursor: pointer;
  list-style: none;
  margin: 0;
  overflow-y: auto;
  padding: 0;
  user-select: none;
  max-width: 100%!important;
}
.vsb-menu li {
  padding: 8rem 0;
  font-size: 14rem;
  line-height: 1;
}
.vsb-menu li:hover,
.vsb-menu li.active {
  color: var(--color-gold);
}
.vsb-main {
  display: inline-block;
  width: 100%;
  position: relative;
  font-size: 14rem;
  line-height: 1;
  color: var(--color-white);
}
.vsb-main button {
  max-width: 100%!important;
  background: transparent!important;
  position: relative;
  border-radius: 0;
  border: none;
  padding: 0 57rem 0 23rem;
  display: flex;
  align-items: center;
  height: 42rem;
  width: 100%;
  z-index: 1;
  font-size: 14rem;
  line-height: 1;
}
.vsb-main button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16rem;
  background: url(arrow-down.svg) no-repeat center / contain;
  width: 11rem;
  height: 9rem;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.vsb-main .title {
  user-select: none;
  letter-spacing: 0;
  text-transform: none;
  font-weight: normal;
  margin-bottom: 0!important;
  font-size: 14rem;
  line-height: 1;
}
.vsb-main.open button:after {
  transform: translateY(-50%) scaleY(-1);
}
@media (width < 1024px) {
  .vsb-menu {
    padding: 8rem 19rem;
    left: -4rem;
  }
  .vsb-main button {
    padding: 0 40rem 0 19rem;
    height: 36rem;
  }
}
