.search-panel {
  top: -120%;
  transition: 0.4s;

  width: 100%;
  padding: 80px 0;

  height: 35vh;

  position: fixed;
  left: 0;

  background-color: #fff;
  z-index: 100000000000000000000;
}
.search-panel.opened {
  top: 0;
}

.searh-panel-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.searh-panel-in input {
  width: 100%;
  height: 50px;

  border: none;
  background-color: #F2F0EC;
  padding: 0 20px;

  font-size: 16px;
}
.searh-panel-in input::placeholder {
  text-transform: uppercase;
  color: #796E73;
  font-size: 16px;
  font-weight: 400;
}
.search-panel-close {
  cursor: pointer;
  background: url("/img/close-btn-dark.png") no-repeat center center;
  width: 50px;
  height: 50px;
}



/*--------------------------------------------------------------------*/
.modals-bkg-blur {
  top: -120%;

  width: 100%;
  height: 100%;

  position: fixed;
  left: 0;

  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
}
.modals-bkg-blur.opened {
  width: 100%;
  height: 100%;

  position: fixed;
  top: 0;
  left: 0;

  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
}
