body {
  margin: 0;
  padding-top: 0px;
}

.hidden {
  visibility: hidden;
}

.z-top {
  z-index: 100;
}

.search-wrapper {
  font-family: "Poppins", sans-serif;
}

.search-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(./dashboard_bg.jpg);
  background-size: cover;
  background-position: center center;
  min-height: 500px;
  color: #ffffff;
}

.search-container__bg-opacity {
  background-color: #364e65;
  opacity: 0.3;
  position: absolute;
  width: 100%;
  min-height: 500px;
  z-index: 10;
}

.search-container__title {
  font-weight: bold;
  text-align: center;
  font-size: 36px;
  color: #ffffff;
}

.search-container__text {
  width: 60%;
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.search-navigation {
  display: flex;
  justify-content: center;
  width: 100%;
}

.search-navigation > div {
  margin: 0 20px;
  padding-bottom: 10px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.search-navigation > div:hover,
.search-navigation > .active {
  color: #3796f6;
  border-color: #3796f6;
}

.search-container__text textarea,
.search-container__text input {
  display: none;
  background: #ffffff;
  border: 1px solid #c1d2e2;
  border-radius: 5px;
  resize: none;
  width: 90%;
  padding: 20px 5%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.search-container__text textarea.active-input,
.search-container__text input.active-input {
  display: block;
}

.search-container__text textarea.active-input,
.search-container__text input.active-input {
  display: block;
}

.search-container__text textarea.html {
  height: 175px;
}

.search-container__text input.keywords {
  height: 30px;
}

.search-container__text textarea::placeholder,
.search-container__text input::placeholder {
  color: #d2d5d7;
}

.search-container__text button {
  width: 185px;
  background: #3796f6;
  height: 50px;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  border: none;
  margin-top: 16px;
  cursor: pointer;
}

.search-container__text button:hover {
  background-color: #4ba5ff;
}

.search-container__text button:active {
  background-color: #0773e1;
}

.search-container__title {
  display: none;
}

.search-container__title.title-active {
  display: block;
}

.search-container__credentials {
  position: absolute;
  bottom: 15px;
  display: flex;
  z-index: 20;
  width: 100%;
  justify-content: space-between;
}

.search-container__credentials .copyright {
  padding-left: 80px;
  font-size: 10px;
}

.search-container__credentials .author {
  padding-right: 80px;
  font-size: 12px;
}

.search-container__credentials .author a {
  color: #ffffff;
  text-decoration: none;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .search-container__title {
    font-size: 20px;
    padding: 0 20px;
  }

  .search-container__text {
    width: 90%;
  }

  .search-container__text button {
    width: 100%;
  }

  .search-container__credentials {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .search-container__credentials > div {
    padding: 0 !important;
  }

  .search-navigation {
    font-size: 13px;
  }
}

/* Small and Large devices */
@media only screen and (min-width: 600px) and (max-width: 992px) {
  .search-container__title {
    font-size: 25px;
  }

  .search-container__text {
    width: 80%;
  }

  .search-container__credentials .copyright {
    padding-left: 30px;
  }

  .search-container__credentials .author {
    padding-right: 30px;
  }
}

/* Small and Large devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .search-container__title {
    font-size: 30px;
  }

  .search-container__text {
    width: 70%;
  }
}
