/*-------------------------------*/
/*-- Search Form ----------------*/
/*-------------------------------*/

.searchandfilter ul {
  display: flex;
  flex-flow: row wrap;
  margin: 0;
  padding: 0;
  width: 100%;
}

.searchandfilter ul li {
  display: block;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

.searchandfilter label {
  width: 100%;
}

.searchandfilter select.sf-input-select {
  width: 100%;
}

.sf-field-submit {
  text-align: center;
}

.sf-field-submit input[type="submit"] {
  color: #f6f5f2;
  background-color: #a2161f;
  border-color: #a2161f;
  margin-top: 20px;
}

.sf-field-submit input[type="submit"]:hover {
  color: #FFF;
  background-color: #a2161f;
  border-color: #a2161f;
}

/*-------------------------------*/
/*-- Search Results -------------*/
/*-------------------------------*/

.property-search-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
}

.property-search-item-title {
  font-size: 1.6em;
  font-weight: 400;
}

.property-search-item ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.property-search-item li {
  display: inline-block;
  list-style: none;
  font-weight: 400;
  margin-right: 20px;
  margin-bottom: 0;
}

span.even:before {
  content: ' / ';
}

.property-search-item-price {
  font-size: 2rem;
  font-weight: 600;
  color: #a2161f;
  text-align: right;
}

.property-search-item-price p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(57,57,61,.8);
}


/*-------------------------------*/
/*-- Mobile First Queries -------*/
/*-------------------------------*/

/* Larger than mobile */
@media (min-width: 400px) {

}

/* Larger than phablet */
@media (min-width: 550px) {

}

/* Larger than tablet */
@media (min-width: 750px) {
  .searchandfilter ul li {
    width: 50%;
  }
  .searchandfilter ul li:nth-child(odd) {
    padding-left: 0;
  }
  .searchandfilter ul li:nth-child(even) {
    padding-right: 0;
  }
  .searchandfilter ul li.sf-field-submit {
    width: 100%;
    text-align: right;
    padding: 0;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {

}

/* Larger than Desktop HD */
@media (min-width: 1200px) {

}
