.hidden-search {
  display: none !important;
}
.vsb-menu {
  background-clip: padding-box;
  background-color: var(--color-white);
  border-radius: 14rem;
  overflow: hidden;
  padding: 15rem 20rem;
  cursor: pointer;
  display: block;
  position: absolute;
  visibility: hidden;
  z-index: 1000;
  min-width: 100%;
  max-width: none;
  width: 100%;
  text-align: left;
  box-shadow: 0 10rem 10rem 0 #00000026;
  left: 0;
  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-purple);
}
.vsb-main {
  display: inline-block;
  width: 100%;
  position: relative;
  font-size: 14rem;
  line-height: 1;
  color: var(--color-black);
}
.vsb-main button {
  max-width: 100%!important;
  background: var(--color-white) !important;
  position: relative;
  border-radius: 16rem;
  border: none;
  padding: 0 57rem 0 20rem;
  display: flex;
  align-items: center;
  height: 54rem;
  width: 100%;
  z-index: 1;
  font-size: 14rem;
  line-height: 1;
}
.vsb-main button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8rem;
  background: url(arrow-down.svg) no-repeat center / contain;
  width: 36rem;
  height: 36rem;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.vsb-main .title {
  user-select: none;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 0!important;
  font-size: 24rem;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--default-font-family);
}
.vsb-main.open button:after {
  transform: translateY(-50%) scaleY(-1);
}
