@import url("variables.css");

.mobile-search-main-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: 1002;
}

.mobile-search-main-container.open {
  animation: showSearch 0.3s ease-in-out forwards;
}

.mobile-search-main-container.close {
  animation: hiddeSearch 0.3s ease-in-out forwards;
}

@keyframes showSearch {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes hiddeSearch {
  0% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

.mobile-search {
  display: none;
}

.mobile-search.visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.mobile-search .div-block-2 {
  width: 100%;
}

.mobileSearch {
  font-size: 16px;
}

.search-identificator {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

.search-identificator img {
  width: 150px;
}

.mobile-search-p {
  width: 70%;
  text-align: center;
  margin-top: 20px;
  color: var(--greytext);
}

.mobile-search-identificator {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-search-result {
  width: 100%;
  max-height: 600px;
  display: none;
  padding: 0px 20px;
  overflow-y: auto;
}

.mobile-search-result::-webkit-scrollbar {
  display: none;
}

.mobile-search-identificator.not-found {
  display: none;
}
