#header .common-limiter #form-search {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #333;
  z-index: 9999;
}

#header .common-limiter #form-search .form-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template: 1fr auto;
  align-content: center;
  max-width: 90%;
  justify-content: inherit;
}

#header .common-limiter #form-search .form-wrapper .close,
#header .common-limiter #form-search .close {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  top: 6rem;
  right: 25px;
}

#header .common-limiter #form-search .close svg {
  width: 24px;
  height: 24px;
}

#header .common-limiter #form-search .form {
  width: min(650px, calc(100% - 40px));
}

#header .common-limiter #form-search .form input {
  display: block;
  width: 100%;
  height: 64px;

  padding: 0 22px;
  box-sizing: border-box;

  border: 0;
  border-radius: 5px;
  outline: none;

  background: #242424;
  color: #fff;

  font-size: 16px;
}

#header .common-limiter #form-search .form input::placeholder {
  color: #fff;
  opacity: 1;
}