* {
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

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

.main-container {
  width: 80%;

  display: flex;
  justify-content: center;
  background-color: rgb(190, 215, 224);
}

.search-filter {
  height: calc(100vh - 200px);
  position: sticky;
  top: 0;
  width: 25%;
  background-color: rgb(240, 231, 231);
  padding: 12px;
}

.search-filter input {
  height: 35px;
  text-align: center;
  width: 100%;
}

.results-container {
  height: 3000px;
  width: 75%;
  background-color: rgb(235, 243, 235);

  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px;
}

.holiday-home-in-searchresults {
  width: 100%;
  background-color: white;
  border-radius: 6px;
  height: 225px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 12px;
  display: flex;
  gap: 12px;
}

.holiday-home-in-searchresults:hover {
  box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px;
}

.hhis-pic {
  height: 100%;
  width: 35%;
  min-width: 35%;
  object-fit: cover;
  border-radius: 6px;
}
.hhis-deails-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;

  gap: 12px;
}

.to-offer-btn-container {
  display: flex;
  justify-content: flex-end;
}

.to-offer-btn {
  padding: 8px 12px;
  background-color: rgb(172, 249, 137);
  outline: none;
  border: none;
  border-radius: 3px;
  font-size: 17px;
}

.to-offer-btn:hover {
  background-color: rgb(139, 254, 86);
  cursor: pointer;
  border-bottom: 1px solid grey;
}
.to-offer-btn:active {
  border: none;
  background-color: rgb(172, 249, 137);
}
.fs-22 {
  font-size: 22px;
}

.text-center {
  font-size: 22px;
}

.tag-search-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-top10 {
  margin-top: 12px;
}

.d-none {
  display: none !important;
}

/* --------------------------- Index.php -------------------- */

.index-all-houses-container {
  /* height: 100%; */
  width: 100%;
  /* background-color: lightcyan;
  border: 1px solid orange; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 25px; */
  min-height: calc(100vh - 275px);
}

.index-all-houses {
  width: 90%;
  /* background-color: white;
  border: 1px solid red; */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.index-house-box {
  /* border: 3px solid rgb(0, 0, 0); */
  border-radius: 10px;
  width: 250px;
  height: 350px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
}
.index-house-box:hover {
  box-shadow: rgba(99, 99, 99, 0.6) 0px 2px 8px 0px;
  transform: scale(1.01);
  cursor: pointer;
}
.index-house-box-image {
  width: 100%;
  height: 75%;
  flex: 1;
}

.index-house-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-house-box-text {
  display: flex;
  flex-direction: column;
  padding: 6px;
}

.inputfield {
  height: 35px;
  /* text-align: center; */
  padding-left: 6px;
}
.inputfield:focus {
  outline: none;
  border-color: rgb(255, 188, 63);
  border-radius: 3px;
}

/* Register  */

.register-main-container {
  background-color: rgb(216, 216, 216);
  width: 100vw;
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.register-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  width: 35%;
}

.register-form div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 6px;
  width: 100%;
}

.register-form input {
  width: 70%;
}
.width-70 {
  width: 70%;
}
.register-form label {
  width: 30%;
}

.error {
  color: red;
  font-weight: bold;
}

.message {
  position: fixed;
  top: 200px;
  left: calc(50% - 200px);

  width: 400px;
  height: 200px;
  border-radius: 25px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  opacity: 1;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

  /* color: rgb(30, 80, 30); */
  text-align: center;

  /* margin: 80px auto;   */
}

.btn-container-2-btn {
  flex-direction: column;
  /* gap: 6px !important; */
}
.btn-container-2-btn button {
  width: 70%;
}
.readonly {
  background-color: transparent;
  border: none;
  color: black;
}

.active {
  color: #111;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 5px solid rgb(255, 205, 11);
}
.active:hover {
  border-bottom: 5px solid rgb(255, 188, 63);
}

/* ___ Dashboard user */

.dasshborad-wellcome-message-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dasshborad-wellcome-message {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: calc(100vh - 200px);
  gap: 20px;
  padding: 6px;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 2px;
  line-height: 30px;
}

.footer {
  height: 100px;
  background-color: white;
  display: flex;
  justify-content: space-evenly;
}

.colum {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.about-main-container {
  width: 100vw;
  height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-main {
  display: flex;
  flex-direction: column;
  /* width: 80%; */

  padding: 6px;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 2px;
  line-height: 30px;
}

.animation {
  width: 100px;
  height: 100px;
}

.myhouses-sub-header {
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.myhouses-showmyhouses-btns-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 6px;
}

.myhouses-showmyhouses-btns-container button {
  font-size: 13px;
}

.myhouses-showmyhouses-btns-container button:last-of-type {
  background-color: red;
  color: white;
}

.myhouses-showmyhouses-btns-container button:first-of-type {
  background-color: white;
  border: 1px solid grey;
}

.myhouses-showmyhouses-btns-container button:first-of-type:hover {
  border-bottom: 2px solid grey;
}
.myhouses-showmyhouses-btns-container button:first-of-type:active {
  border-bottom: 1px solid grey;
}
.myhouses-showmyhouses-btns-container button img {
  width: 15px;
  object-fit: contain;
}

.create_new_house_main_container {
  width: 100%;
  /* background-color: rgb(229, 239, 242); */
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 800px; */
  margin-top: 24px;
}

.create_new_house_main {
  width: 70%;
  background-color: white;
  /* height: 800px; */
  display: flex; 
  flex-direction: column;
  gap: 24px;
  

}

.create_new_house_main_section {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(0  , 0, 0, 0.1);
  border-radius: 12px;
  width: 100%;
  /* height: 350px; */
}

.create_new_house_main_section {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.create_new_house_main_section div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.create_new_house_main_section div label {
  font-size: 14px;
}

.create_new_house_main_section div input{
  background-color: rgb(243, 243, 245);
  border: none;

  height: 30px;
  padding-left: 12px;
  border-radius: 6px;
}


.create_new_house_main_section div input:focus{
  outline: none;
  border: 1px solid;
  border-color:  rgb(255, 188, 63);
  border-radius: 8px;
}

.textarea {
  width: 100%;
  min-height: 100px;      
  max-height: 200px;     
  resize: vertical;        
  overflow: auto;         
  
  border: none;

  padding: 12px;
   
  border-radius: 6px;
  background-color: rgb(243, 243, 245);
}

.textarea:focus{
outline: none;
  border: 1px solid;
  border-color:  rgb(255, 188, 63);
  border-radius: 8px;
}

.create_new_house_counter{
  color: grey;
  font-size: 13px;
}

.feature{
  /* flex-direction: row !important; */
}

.feature-inputs-container{
  display: flex !important;
  flex-direction: row !important;
  width: 100% !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.feature-inputs-container button {
  color: white;
  background-color: black;
  border-radius: 6px;
  padding: 4px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.feature-inputs-container button:hover {
  color: black;
  background-color: white;
  border-radius: 6px;
  padding: 4px;
  cursor: pointer;
  border-bottom: 1px solid black;
}

.feature-inputs-container button:active {
 border: none;
}

.feature-outputs-container{
  justify-content: space-between !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 6px;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

 /*  TO DO - to do Hier muss ich noch drüber schauen  */

