/*Globals*/

html {
    --var-font-primary:'Roboto';
    --var-color-primary:#8DA74D;
    --var-color-text:#000000;
    --var-color-text-secondary:#707070;
}


body {f
  font-family: "Rubik", Sans-serif !important;
}

/*Google Maps Start*/

/*
 * Always set the map height explicitly to define the size of the div element
 * that contains the map.
 */
 #map {
    height: 800px;
    width:100%;
    border:0;
  }
  .property {
    align-items: center;
    border-radius: 50%;
    color:var(--var-color-primary);
    display: flex;
    font-size: 48px;
    gap: 15px;
    height: 48px;
    justify-content: center;
    padding: 4px;
    position: relative;
    position: relative;
    transition: all 0.3s ease-out;
    width: 48px;
  }

  .property .icon {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
  }

  .property .icon svg {
    height: 20px;
    width: auto;
  }

  .property .details {
    display: none;
	  font-weight:400;
    flex-direction: column;
    flex: 1;
	      font-family: "Rubik", Sans-serif;
    max-width: 260px;
    height: auto;
    overflow: hidden;
  }

  .property .price {
    color: #000;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
    font-weight: 500;
  }

  .property .address {
    color: var(--var-color-text-secondary);
    font-size: 13px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-family: "Rubik", Sans-serif !important;
  }
  .property .phone {
    color: var(--var-color-text-secondary);
    font-size: 13px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-family: "Rubik", Sans-serif !important;
  }
  .property .mail {
    color: var(--var-color-text-secondary);
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 5px;
    font-family: "Rubik", Sans-serif !important;
  }

  .property .features {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-family: "Rubik", Sans-serif !important;
  }

  .property .features span {
    text-transform: capitalize !important;
    color:#000 !important;
    font-family: "Rubik", Sans-serif !important;
    font-weight: 500 !important;
  }

  .property .features > div {
    align-items: center;
    background: #F5F5F5;
    border-radius: 5px;
    border: 1px solid #ccc;
    display: flex;
    font-size: 10px;
    gap: 5px;
    padding: 5px;
    font-family: "Rubik", Sans-serif !important;
  }

  /*
   * Property styles in highlighted state.
   */
  .property.highlight {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
    height: 160px;
    padding: 8px 15px;
    width: auto;
  }

  .property.highlight::after {
    border-top: 9px solid #FFFFFF;
  }

  .property.highlight .details {
    display: flex;
  }

  .property.highlight .icon svg {
    width: 50px;
    height: 50px;
  }

  .property .bed {
    color: #FFA000;
  }

  .property .bath {
    color: #03A9F4;
  }

  .property .size {
    color: #388E3C;
  }

  /*
   * House icon colors.
   */
  .property.highlight:has(.fa-house) .icon {
    color: var(--house-color);
  }

  .property:not(.highlight):has(.fa-house) {
    background-color: var(--house-color);
  }

  .property:not(.highlight):has(.fa-house)::after {
    border-top: 9px solid var(--house-color);
  }

  /*
   * Building icon colors.
   */
  .property.highlight:has(.fa-building) .icon {
    color: var(--building-color);
  }

  .property:not(.highlight):has(.fa-building) {
    background-color: var(--building-color);
  }

  .property:not(.highlight):has(.fa-building)::after {
    border-top: 9px solid var(--building-color);
  }

  /*
   * Warehouse icon colors.
   */
  .property.highlight:has(.fa-warehouse) .icon {
    color: var(--warehouse-color);
  }

  .property:not(.highlight):has(.fa-warehouse) {
    background-color: var(--warehouse-color);
  }

  .property:not(.highlight):has(.fa-warehouse)::after {
    border-top: 9px solid var(--warehouse-color);
  }

  /*
   * Shop icon colors.
   */
  .property.highlight:has(.fa-shop) .icon {
    color: var(--shop-color);
  }

  .property:not(.highlight):has(.fa-shop) {
    background-color: var(--shop-color);
  }

  .property:not(.highlight):has(.fa-shop)::after {
    border-top: 9px solid var(--shop-color);
  }

 /*Google Map End*/

section.listingContainer {
    background-color: #F8F8F8;
}

section.listingContainer .col-sm-6 {
    padding-right: 0px;
    padding-left: 0px;
}

.listingContainer .form-area form {
    display: flex;
    gap:10px;
}


.listingContainer .form-area {
    background-color:#fff;
    padding: 20px 15px;
    border:1px solid #E8E8E8;
}

.listingContainer .form-area form span {
    min-width: 95px;
    font-weight: 500;
    font-size: 16px;
    margin-right: 16px;
    display: block;
    padding-top: 8px;
}

.listingContainer .form-area form .fields {
    border-radius: 2px;
    border-color: #DEDEDE;
    width: 100% !important;
    height: 44px;
}

.listingContainer .form-area form input[type="submit"] {
    width: 124px !important;
    height: 44px;
    background-color: var(--var-color-primary);
    color:#fff;
    padding:10px 29px;
    font-size:16px;
    font-weight: 600;
    border:none;
    display: block;
    text-transform: uppercase;
}



.result-area {
    background-color: #F8F8F8;
    padding: 15px;
        height: calc(100vh - 145px);
}

.result-area .result-area-header {
    display: flex;
    justify-content: space-between;
}
.result-area .result-area-header .title {
    font-size: 24px;
    font-weight: 500;
    color: var(--var-color-text);
}

.result-area .result-area-header b {
    font-size: 24px;
    font-weight: 500;
    color: var(--var-color-primary);
}

.result-area .result-area-header .results-nav p {
    color: var(--var-color-text-secondary);
    font-size: 16px;
    display: block;
    margin-top: 15px;
}

.result-item-wrapper  {
    margin-bottom: 18px;
}

.result-item .result-img {
    max-width:150px;
}
.result-item .result-img img {
    object-fit: cover;
    height: 100%;
}
.result-item .result-item-wrapper {
    display: flex;
    background-color: #fff;
}
.result-item .result-item-details {
    margin:0px 0px 21.4px 0px;
    background-color: #fff;
}

.result-item .result-content {
    padding:15px 0px 15px 36px;
}
.result-item .result-content .title {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: var(--var-color-text);
    margin-bottom: 16px;
    text-transform: capitalize !important;
}

.result-item-details.active.overflowed {
    height: 250px;
    overflow-y: scroll;
}

.result-item .result-content span.location {
    margin-bottom: 9px;
    color: var(--var-color-text-secondary);
    font-size: 15px;
    display: block;
}

.result-item .result-content .flex-contact span {
    color: var(--var-color-text-secondary);
    font-size: 15px;
}
.result-item .result-content .flex-contact span a {
    color: var(--var-color-text-secondary);
    font-size: 15px;
    text-decoration: none;
}

.result-item .result-content .flex-contact {
   display: block;
   margin-bottom: 14px;
}

.result-item .result-content .flex-buttons a {
    padding:8px 34px;
    font-size: 13px;
    color: var(--var-color-text);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    border:1px solid #CCCCCC;
    display: inline-block;
    margin-right: 5px;
}

.result-item-details .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--var-color-text);
    text-transform: uppercase;
}

.result-item-details .socials .title {
    margin-bottom: 17px;
    display: block;
}

.result-item-details .socials .single-social a,
.social-links ul li a {
    text-decoration: none;
    color: var(--var-color-text);
    font-weight: 500;
    font-size: 24px;
}


.result-item-details .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--var-color-text);
    text-transform: uppercase;
}

.result-item-details ul {
    list-style-type: none;
    padding-left:0px;
}

.result-item-details li {
    list-style-type: none;
    display: inline-block;
    padding-right: 15px;
    text-align: left;
}

.result-item-details li:last-child {
    padding-right: 0px;
}

.result-item-details {
    padding:14px 31px;
}

.result-item-details .results-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.result-item-details .business-hours p {
    color: var(--var-color-text-secondary);
    font-size: 15px;
}

.result-item-details .results-text-content .main-title {
    font-size: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 18px;
}

.result-item-details .results-text-content .sub-title {
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-bottom: 14.1px;
}

.result-item-details.active {
    display: block !important;
    transition: 0.5ms;
}

.result-item-details {
    display: none;
    transition: 0.5ms;
}

.result-content .location:before {
    content:url('../images/map.svg');
    width:16px;
    height: 16px;
    margin-right: 6px;
    margin-bottom:-5px;
    display: inline;
}
.result-content .phone:before {
    content:url('../images/phone.svg');
    width:16px;
    height: 16px;
    margin-right: 6px;
    margin-bottom:-5px;
    display: inline;
}
.result-content .phone {
    margin-right: 10px;
}
.result-content .mail:before {
    content:url('../images/envelope.svg');
    width:16px;
    height: 16px;
    margin-right: 6px;
    margin-bottom:-5px;
    display: inline;
}

.result-area {
    max-height: 730px;
    overflow-y: scroll;
}
.result-area::-webkit-scrollbar {
    display: none;
}
.myProfile .profile-listing-header{
    border-bottom: 1px solid #c5bbbb7d;
    padding-bottom: 10px;
    padding-left: 0px;
    display: flex;
    justify-content: space-between;
}
