.pageContainer {
  height: calc(100vh - 66px);
  position: absolute;
  background-position: center;
  width: 100%;
  background-size: cover;
  background-image: url(../img/immobilien_bg.png);
  background-repeat: no-repeat;
  overflow: auto;
}

.pageContainer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  background: linear-gradient(rgba(66, 83, 102, 0.9) 0%, rgba(66, 83, 102, 0.5) 60%, rgba(66, 83, 102, 0) 90%);
}

.searchWraper {
  width: 97%;
  max-width: 994px;
  padding: 0px;
  position: relative;
  z-index: 10;
  margin: 0px auto;
  margin-bottom: 30px;
}

.searchTitle {
  margin: 10vh 0px 0px;
  color: white;
}

.searchTitle h1 {
  font-weight: 700;
}

.searchContainer {
  width: 100%;
  background-color: #fff;
  border-radius: 0.375rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 35px 22px;
}

.cityWraper {
  margin-bottom: 35px;
  width: calc(62.5% - 0.75rem);
  padding: 5px;
}

.propsWraper {
  margin-bottom: 35px;
  width: calc(37.5% - 0.75rem);
  padding: 5px;
}

.typeWraper {
  width: calc(25% - 1.125rem);
  overflow: hidden;
}

.roomsWraper {
  width: calc(25% - 1.125rem);
}

.roomsWraper label {
  position: absolute;
  top: -20px;
  color: #919191;
}

.priceWraper {
  width: calc(25% - 1.125rem);
}

.buttonWraper input {
  width: 100%;
  height: 48px;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 1.4375rem;
}

.immobInputWraper {
  height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid #d9d9d9;
  position: relative;
  transition: .3s ease;
  border-radius: 0.1875rem;
}

.immobInputWraper input::placeholder {
  color: #c9c9c9;
}

.immobInputWraper input[type='text'],
.immobInputWraper input[type='text']:focus,
.immobInputWraper input[type='text']:active,
.immobInputWraper select,
.immobInputWraper select:focus,
.immobInputWraper select:active {
  border: none;
  outline: none;
  padding: 0px 7px;
  width: 100%;
  flex: 1;
  font-size: 16px;
}

.cityArrContainer {
  display: flex;
  max-width: 65%;
  overflow: auto;
}

.cityArrContainer::-webkit-scrollbar {
  height: 6px;
}

.cityArrContainer::-webkit-scrollbar-thumb {
  background: #CCCCCC;
}

.cityArrContainer::-webkit-scrollbar-thumb:hover {
  background: #AFAFAF;
}

.cityArrContainer::-webkit-scrollbar-thumb:active {
  background: #6b6b6b;
}

.selectedCityItem {
  background-color: #425366;
  border-radius: 3px;
  padding: 6px 6px;
  display: flex;
  align-items: center;
  color: white;
  margin-right: 5px;
  font-size: 11px;
  height: 100%;
}

.selectedCityItem i {
  margin-left: 3px;
  cursor: pointer;
}

.selectedCityItem span {
  white-space: nowrap;
  overflow: hidden;
}

.typeItem {
  width: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
}

.typeItem.active {
  background-color: #425366;
  color: white;
}

#immob_roomsFrom {
  border: 0;
  border-left: 1px solid #d9d9d9;
  border-radius: 0;
  border-right: 1px solid #d9d9d9;
  line-height: 35px;
  margin: 0.25rem 0;
  min-width: 0;
  text-align: center;
}

.btn5 {
  width: 53px !important;
  font-weight: 600;
  font-size: 20px;
  height: 100%;
}

#priceFrom {
  border-right: 1px solid #d9d9d9;
  line-height: 35px;
}

.resultBtn {
  min-width: 230px;
  min-height: 45px;
  height: 100%;
  width: 100%;
}

@media (max-width: 994px) {
  .searchTitle h1 {
    font-size: 24px;
  }

  .searchTitle h2 {
    font-size: 23px;
  }

  .immobInputWraper {
    margin-bottom: 30px;
  }

  .cityWraper,
  .buttonWraper {
    width: 100%;
  }

  .propsWraper,
  .typeWraper,
  .roomsWraper,
  .priceWraper {
    width: calc(50% - 0.75rem);
  }

}

@media (max-width: 480px) {
  .pageContainer{
    height: calc(100vh - 58px);
  }
  .searchTitle h1 {
    font-size: 18px;
  }

  .searchTitle h2 {
    font-size: 17px;
  }

  .propsWraper,
  .typeWraper,
  .roomsWraper,
  .priceWraper {
    width: 100%;
  }

}