/* =========================
   Search drawer (Overlay)
========================= */

.vc-drawer--full {
  position: fixed;
  inset: 0;

  background: var(--vcom-bg);
  color: var(--vcom-text);

  z-index: 2000;

  transform: translateY(-100%);
  transition: transform .3s ease;

  overflow-y: auto;
  display: none;
}

.vc-drawer--full[aria-hidden="false"] {
  display: block;
  transform: translateY(0);
}

/* Inner */
.vc-drawer--full .vc-drawer__inner {
  max-width: 960px;
  margin: 120px auto;
  padding: 20px;
  position: relative;
}

/* Close button */
.vc-drawer__close {
  position: fixed;
  top: 30px;
  right: 40px;

  font-size: 2.2rem;
  line-height: 1;

  background: none;
  border: 0;

  color: var(--vcom-text);
  cursor: pointer;

  z-index: 2100;
}