
  	
/* Container for Tabs */
    .price-tab-container {
      width: 100%;
      max-width: auto;
      margin: 0 auto;
    }

    /* Style for Tabs */
    .price-tabs {
      display: flex;
      justify-content: space-between;
      margin-bottom: 60px;
    }

    .price-tab {
      flex: 1;
      padding: 20px;
      text-align: center;
      background-color: #f9f9f9;
      border: 2px solid #cf7041; /* Updated border color */
      font-size: 25px;
      font-weight: 400;
      cursor: pointer;
      transition: background-color 0.3s;
      border-radius: 0px;
      margin-right: 10px; /* Added space between tabs */
    }

    /* Remove margin from the last tab */
    .price-tab:last-child {
      margin-right: 0;
    }

    .price-tab:hover {
      background-color: #ddd;
    }

    .price-tab.active {
      background-color: #cf7041; /* Updated active tab background color */
      color: white;
    }

    /* Tab Content */
    .price-tab-content {
      display: none;
    }

    .price-tab-content.active {
      display: block;
      text-align: center;
      font-size: 18px;
      margin-top: 20px;
    }

    /* Two-column layout for Buy Price and Rent Price */
    .price-tabs-prices {
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
    }

    .price-column {
      width: 48%; /* Make two columns with space between them */
      font-size: 18px;
      text-align: left;
	  margin-top: 20px;
    }

    /* Make it Responsive */
    @media (max-width: 600px) {
      .price-tabs {
        flex-direction: column;
      }

      .price-tab {
        font-size: 14px;
        padding: 15px;
        margin-right: 0;
        margin-bottom: 10px; /* Added space between tabs when stacked */
      }

      .price-tabs-prices {
        flex-direction: column;
        align-items: center;
      }

      .price-column {
        width: 100%; /* Stack columns on small screens */
        margin-bottom: 10px; /* Add space between the columns */
        text-align: center;
      }
    }

.search-suggestions.fz16.ml15.mt10.mb-1 {
    font-size: 14px !important;
    color: goldenrod !important;
}

div#ui-id-3 {
    font-size: 13px !important;
    color: grey !important;
    padding-left: 20px !important;
    outline: none !important;
    /* border: 1px solid #fff; */
}
#map {
    width: 100%;
    height: 400px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

#search-box {
    width: 300px;
    margin: 10px 0px 10px 0px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.pac-logo:after {
    background-image: none !important;
}

/* Custom Styles for Parsley Error and Success */
input.parsley-error,
textarea.parsley-error {
    border: 1px solid #ff4d4d !important; /* Custom red border */
    background-color: #ffe6e6 !important; /* Light pink background */
}

input.parsley-success,
textarea.parsley-success {
    border: 1px solid #4CAF50 !important; /* Green border */
    background-color: #e8f5e9 !important; /* Light green background */
}

/* Error Message Styling */
.parsley-errors-list {
    margin-top: 5px;
    color: #d32f2f;
    font-size: 0.9em;
    list-style: none;
    padding: 5px;
}

.parsley-error-message {
    color: #fff;
    background-color: #d32f2f;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 5px;
    font-weight: bold;
    border: 1px solid #b71c1c;
}

/* Custom Icon for Valid and Invalid Fields */
input.parsley-success::after,
textarea.parsley-success::after {
    content: "\2713"; /* Green checkmark */
    color: green;
    font-size: 1.5em;
    margin-left: 10px;
}

input.parsley-error::after,
textarea.parsley-error::after {
    content: "\26A0"; /* Red exclamation mark */
    color: red;
    font-size: 1.5em;
    margin-left: 10px;
}


.policy-win {
  position: fixed;
  bottom: 20px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.policy-win.show {
  right: 20px;
}
.policy-win .data {
  margin-top: 16px;
}
.policy-win .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
  color: #cf7041;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.policy-win .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #cf7041;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: #000;
}
#declineBtn {
  border: 2px solid #cf7041;
  background-color: #fff;
  color: #cf7041;
}
#declineBtn:hover {
  background-color: #cf7041;
  color: #fff;
}
@media (max-width: 480px) {
  .policy-win {
    max-width: 90%;
	
  }
}
.skeleton-loader-loginpage {
    position: relative;
    height: 773px;
    width: 100%;
    overflow: hidden;
}

    .skeleton-loader-loginpage:after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background-repeat: no-repeat;
        background-image: linear-gradient( 90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100% ), linear-gradient(#e5e5e5 773px, transparent 0), linear-gradient(#ffffff 100%, transparent 0);
        background-size: 290px 100%, 773px 773px, 100% 100%;
        background-position: 0 0, 0px 0px, 0 0;
        animation: skeleton-animation-loginpage 2000ms infinite;
    }

@keyframes skeleton-animation-loginpage {
    to {
        background-position: 100% 0, 0px 0px, 0 0;
    }
}
.home9-tags.at-home16 a {   
text-overflow: ellipsis !important;
  max-width: 30% !important;
  overflow: hidden !important;
  height: 38px;
}