@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap");

:root {
  --background-color-searchbar: #000;
  --color-searchbar: blue;
}

.searchbar-beenla {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: fixed;
  z-index: 1000;
  background-color: #e3e3e3;
  color: var(--color-searchbar);
  font-family: "Montserrat", sans-serif;
}

.searchbar-beenla .searchbar-beenla-header {
  display: flex;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 0.7rem 0px;
  width: 100%;
}

.searchbar-beenla .searchbar-beenla-header img {
  width: 65px;
}

.searchbar-beenla .searchbar-beenla-header a {
  position: absolute;
  display: flex;
  text-decoration: none;
  color: var(--color-searchbar);
  fill: var(--color-searchbar);
  right: 1rem;
  top: 1.27rem;
}

.searchbar-beenla .searchbar-beenla-header a b {
  position: relative;
  top: 0.2rem;
}

.searchbar-beenla .searchbar-beenla-content .list-group li input {
  outline: none;
  border-radius: 4px;
  border: none;
  box-shadow: rgb(0 0 0 / 5%) 0px 0px 0px 1px,
    rgb(209 213 219) 0px 0px 0px 1px inset;
  padding: 0.7rem 0.5rem;
}

.searchbar-beenla .searchbar-beenla-content .list-group li .fw-bold {
  padding-bottom: 0.3rem;
}

.searchbar-beenla .searchbar-beenla-content form {
  padding-top: 3rem;
}

.searchbar-beenla .searchbar-beenla-content .list-group li button {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
    rgb(209, 213, 219) 0px 0px 0px 1px inset;
  border-radius: 4px;
  border: none;
  outline: none;
  font-weight: bold;
  float: right;
  margin-top: 1.4rem;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
}

.searchbar-beenla .searchbar-beenla-content .warning-search {
  margin-top: 0.4rem;
  color: #d63031;
  font-weight: bold;
  font-size: 0.8rem;
}

@media (min-width: 910px) {
  .searchbar-beenla .searchbar-beenla-content form {
    width: 500px;
    margin: 0 auto;
  }

  .searchbar-beenla .searchbar-beenla-content .list-group li .ms-2 {
    width: 70%;
    padding-right: 0px;
  }

  .searchbar-beenla .searchbar-beenla-content .list-group li input {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .searchbar-beenla .searchbar-beenla-content .me-auto {
    margin-right: 0.5rem !important;
    width: 100%;
  }

  .searchbar-beenla .searchbar-beenla-content .list-group li input {
    width: 100%;
  }
}

.fade-in-fwd {
  animation: fade-in-fwd 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-out-bck {
  animation: fade-out-bck 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.gsc-search-box {
  display: none !important;
}

@keyframes fade-out-bck {
  0% {
    transform: translateZ(0);
    opacity: 1;
  }
  100% {
    transform: translateZ(-80px);
    opacity: 0;
  }
}

@keyframes fade-in-fwd {
  0% {
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}

.container-search-beenla {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: red;
}
