.multiselect {
  display: flex;
  min-height: 32px;
  width: 100%;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  text-align: left;
  border: 1px solid #eeeff2;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background-color: white; }
  .multiselect:focus {
    outline: none; }
  .multiselect__input {
    position: relative;
    display: inline-block;
    min-height: 20px;
    line-height: 20px;
    border: none;
    border-radius: 5px;
    background: #fff;
    padding: 1px 0 0 5px;
    width: 100%;
    transition: border .1s ease;
    box-sizing: border-box; }
    .multiselect__input:hover, .multiselect__input .multiselect__single:hover {
      border-color: #cfcfcf; }
    .multiselect__input:focus, .multiselect__input .multiselect__single:focus {
      border-color: #a8a8a8;
      outline: none; }
  .multiselect__select {
    position: absolute;
    width: 40px;
    right: 1px;
    text-align: center;
    transition: transform .2s ease;
    z-index: 1; }
    .multiselect__select::before {
      position: relative;
      top: 7px;
      content: "\f107";
      font: normal normal normal 16px/1 "Font Awesome 5 Pro";
      text-rendering: auto;
      transition: ease-in 0.3s;
      border: none; }
  .multiselect__placeholder {
    color: #adadad;
    display: inline-block;
    margin-bottom: 10px;
    padding-top: 2px; }
  .multiselect__option--highlight {
    background-color: #0B3279; }
  .multiselect__content-wrapper {
    margin-top: 32px;
    position: absolute;
    display: block;
    background: #fff;
    width: 100%;
    max-height: 240px;
    overflow: auto;
    border: 1px solid #e8e8e8;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 3;
    -webkit-overflow-scrolling: touch; }
  .multiselect__content {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    min-width: 100%;
    z-index: 4; }
    .multiselect__content::webkit-scrollbar {
      display: none; }
  .multiselect__element {
    display: block; }
  .multiselect__tags {
    display: flex;
    align-items: center;
    height: auto;
    padding: 0px 30px 0px 8px;
    border: none;
    border-radius: 6px;
    position: relative;
    top: 0px;
    background: #fff;
    width: 100%; }
    .multiselect__tags-wrap {
      position: relative;
      /* top: 2px;  removed by mark*/
      display: inline; }
  .multiselect__tag {
    background-color: white;
    padding: 5px 25px 5px 5px;
    color: #666666;
    position: relative;
    display: inline-block;
    border-radius: 5px;
    line-height: 1;
    white-space: nowrap; }
    .multiselect__tag-icon {
      cursor: pointer;
      margin-left: 7px;
      position: absolute;
      right: 0;
      bottom: 0;
      font-weight: 700;
      font-style: normal;
      width: 22px;
      text-align: center;
      line-height: 22px;
      transition: all .2s ease;
      border-radius: 5px;
      top: -2px; }
      .multiselect__tag-icon:after {
        color: #35495e;
        line-height: 26px;
        content: "\D7";
        font-size: 14px; }
      .multiselect__tag-icon:focus, .multiselect__tag-icon:hover {
        color: white;
        background: #eeeff2; }
      .multiselect__tag-icon:focus:after, .multiselect__tag-icon:hover:after {
        color: white; }
  .multiselect__option {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-items: center;
    padding: 12px;
    width: 100%;
    min-height: 40px;
    line-height: 16px;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
    white-space: nowrap;
    z-index: 4; }
    .multiselect__option:after {
      font-size: 12px;
      top: 0;
      right: 0;
      position: absolute;
      line-height: 40px;
      padding-right: 12px;
      padding-left: 20px; }
    .multiselect__option--selected {
      background: #f3f3f3;
      color: #35495e;
      font-weight: 700; }
      .multiselect__option--selected:after {
        content: attr(data-selected);
        color: silver; }
    .multiselect__option--highlight {
      background-color: #888888;
      outline: none;
      color: #fff; }
      .multiselect__option--highlight:after {
        content: attr(data-select);
        background: #41b883;
        color: #fff; }
    .multiselect__option--disabled {
      cursor: text;
      pointer-events: none; }
    .multiselect__option--disabled.multiselect__option--highlight {
      background: #dedede !important; }
    .multiselect__option--selected.multiselect__option--highlight {
      background: #dedede;
      color: #fff; }
      .multiselect__option--selected.multiselect__option--highlight:after {
        background: #dedede;
        content: attr(data-deselect);
        color: #35495e; }
  .multiselect__spinner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: 48px;
    height: 35px;
    background: #fff;
    display: block; }
    .multiselect__spinner:before {
      animation: a 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
      animation-iteration-count: infinite; }
    .multiselect__spinner:after {
      animation: a 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
      animation-iteration-count: infinite; }
    .multiselect__spinner:after, .multiselect__spinner:before {
      position: absolute;
      content: "";
      top: 50%;
      left: 50%;
      margin: -8px 0 0 -8px;
      width: 16px;
      height: 16px;
      border-radius: 100%;
      border-color: #41b883 transparent transparent;
      border-style: solid;
      border-width: 2px;
      box-shadow: 0 0 0 1px transparent; }
  .multiselect__current {
    min-height: 40px;
    overflow: hidden;
    padding: 8px 30px 0 0;
    white-space: nowrap;
    border-radius: 5px;
    border: 1px solid #e8e8e8; }
  .multiselect__loading-enter-active, .multiselect__loading-leave-active {
    transition: opacity .4s ease-in-out;
    opacity: 1; }
  .multiselect__loading-enter, .multiselect__loading-leave-active {
    opacity: 0; }
  .multiselect-enter-active, .multiselect-leave-active {
    transition: all .15s ease; }
  .multiselect-enter, .multiselect-leave-active {
    opacity: 0; }
  .multiselect--active .multiselect__select::before {
    font: normal normal normal 16px/1 "Font Awesome 5 Pro";
    content: "\f106";
    z-index: 5;
    color: #666666;
    transition: ease-in 0.3s;
    border: none; }
  .multiselect--active .multiselect__placeholder {
    display: none; }
  .multiselect--disabled {
    opacity: .6;
    background: #ededed;
    pointer-events: none; }
    .multiselect--disabled .multiselect__single {
      background: transparent; }
    .multiselect--disabled .multiselect__tags {
      background: transparent; }
  .multiselect--disabled .multiselect__current, .multiselect--disabled .multiselect__select, .multiselect__option--disabled {
    background: #ededed;
    color: #a6a6a6; }
  .multiselect__strong {
    margin-bottom: 10px;
    display: inline-block; }
  .multiselect--multi {
    min-height: 62px;
    max-height: 62px; }
    .multiselect--multi .multiselect__single {
      display: none; }
    .multiselect--multi .multiselect__content-wrapper {
      margin-top: 64px; }
    .multiselect--multi .multiselect__tags {
      overflow-y: auto;
      align-items: flex-start; }
  .multiselect--multi.multiselect--active .multiselect__tags {
    margin-top: 4px;
    flex-direction: column; }
  .multiselect--multi.multiselect--active .multiselect__input {
    order: 1; }
  .multiselect--above .multiselect__content-wrapper {
    margin-top: 0;
    bottom: 100%; }

.multiselect-container {
  min-height: 89px; }

.multiselect__single {
  position: relative;
  display: flex;
  align-items: center;
  justify-items: center;
  min-height: 20px;
  line-height: 20px;
  border-radius: 5px;
  border: none;
  background: #fff;
  width: 100%;
  transition: border .1s ease;
  box-sizing: border-box; }

.multiselect__tag ~ .multiselect__input, .multiselect__tag ~ .multiselect__single {
  width: auto; }

.multiselect__input:hover, .multiselect__single:hover {
  border-color: #cfcfcf; }

.multiselect__input:focus, .multiselect__single:focus {
  border-color: #a8a8a8;
  outline: none; }

@keyframes a {
  0% {
    transform: rotate(0); }
  to {
    transform: rotate(2turn); } }
body {
  font-size: 16px;
  font-family: "Open Sans";
  padding: 0px;
  margin: 0px;
  /* height: 100vh;
  width: 100vw; */ }

[v-cloak] {
  opacity: 0; }

.gm-style-iw > button {
  display: none !important; }

.close {
  cursor: pointer; }

#mobile-map {
  display: none; }

a {
  color: inherit;
  text-decoration: none; }

input::placeholder {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans"; }

input:placeholder-shown {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans"; }

input:-ms-input-placeholder {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans"; }

input::-ms-input-placeholder {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans"; }

input::-webkit-input-placeholder {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans"; }

input::-moz-placeholder {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans"; }

#all-cells-container {
  overflow: hidden;
  width: 50vw;
  height: 100vh;
  max-height: 100vh;
  position: absolute;
  top: 0px;
  left: 0px; }
  #all-cells-container #capture {
    border-radius: 4px;
    border: 1px solid #D91A32;
    height: 24px;
    background-color: white;
    color: #D91A32;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 13px;
    cursor: pointer;
    position: fixed;
    top: 35px;
    right: calc(((100vw - calc((315px * 3) + 17px + 15px)) / 2) - 100px);
    width: auto;
    margin: 0px;
    padding: 0px 10px;
    z-index: 49; }
  #all-cells-container #capture:hover {
    background-color: #D91A32;
    color: white; }

#advanced {
  width: 400px;
  max-width: 400px;
  height: auto;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  position: fixed;
  left: calc((100vw - 400px) / 2);
  padding: 20px 40px 30px 40px;
  top: 100px;
  z-index: 150;
  background-color: white; }
  #advanced .close {
    font-size: 20px; }
  #advanced .input-container {
    width: 100%; }
  #advanced .button-container {
    display: flex;
    flex-direction: column;
    align-items: center; }
    #advanced .button-container .view-properties {
      width: calc(100% - 30px);
      color: white;
      background-color: #D91A32;
      text-align: center;
      padding: 5px;
      margin-bottom: 12px;
      cursor: pointer; }
    #advanced .button-container .clear-search {
      font-size: 12px;
      color: red;
      margin-bottom: 10px;
      cursor: pointer; }
  #advanced .advanced-search {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    width: calc(100% - 30px);
    color: #666666; }
    #advanced .advanced-search .input-label {
      color: inherit; }
    #advanced .advanced-search .input-wrapper {
      color: #666666;
      width: 100%;
      display: flex;
      height: 34px;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      border: 1px solid #eeeff2; }
      #advanced .advanced-search .input-wrapper input[type=radio]:checked + label {
        color: #D91A32;
        border: 1px solid #D91A32; }
      #advanced .advanced-search .input-wrapper input[type=radio] {
        display: none; }
      #advanced .advanced-search .input-wrapper label {
        padding: 0px 8px;
        cursor: pointer; }
      #advanced .advanced-search .input-wrapper hr {
        width: 16px;
        border: none;
        border-top: 2px solid #CCCCCC; }
      #advanced .advanced-search .input-wrapper input {
        border: none;
        width: 35%;
        margin: 0px; }
    #advanced .advanced-search .input-wrapper.around {
      justify-content: space-around; }
    #advanced .advanced-search .input-wrapper.bottom {
      margin-bottom: 25px; }
    #advanced .advanced-search input {
      padding: 5px;
      margin-bottom: 10px;
      border: 1px solid #eeeff2;
      height: 32px;
      min-height: 32px;
      font-size: 16px; }
    #advanced .advanced-search #address {
      width: 100%; }
    #advanced .advanced-search .sale-lease {
      margin-bottom: 15px;
      width: 100%;
      display: flex;
      justify-content: space-between; }
      #advanced .advanced-search .sale-lease input[type=checkbox] {
        display: none; }
      #advanced .advanced-search .sale-lease label {
        width: 47%;
        color: #666666;
        background-color: #CCCCCC;
        text-align: center;
        padding: 4px 0px;
        border-radius: 3px;
        cursor: pointer; }
      #advanced .advanced-search .sale-lease input[type=checkbox]:checked + label {
        color: white;
        background-color: #D91A32; }
    #advanced .advanced-search .multiselect {
      margin-bottom: 10px; }
    #advanced .advanced-search .city-state {
      width: 100%;
      display: flex;
      justify-content: space-between; }
    #advanced .advanced-search .county {
      width: 60%;
      margin-bottom: 10px; }
    #advanced .advanced-search .state {
      width: 50%;
      margin-bottom: 10px; }
    #advanced .advanced-search #advanced-city {
      width: 45%; }
    #advanced .advanced-search .zip {
      width: 35%; }
  #advanced .button-container {
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: center;
    align-content: center; }
  #advanced .close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #D91A32;
    cursor: pointer; }

#contact-form, #thanks {
  position: fixed;
  width: 500px;
  left: calc(50vw - 250px);
  background-color: white;
  top: 100px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-content: center; }
  #contact-form .message, #thanks .message {
    padding: 15px 0px; }
  #contact-form .header, #thanks .header {
    height: 85px;
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D91A32;
    position: relative; }
    #contact-form .header span, #thanks .header span {
      font-size: 24px; }
    #contact-form .header .close, #thanks .header .close {
      position: absolute;
      top: 8px;
      right: 8px; }
  #contact-form .form, #contact-form .agents, #thanks .form, #thanks .agents {
    width: 300px; }
  #contact-form .agents, #thanks .agents {
    margin: 30px 0px 15px;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    align-items: flex-start; }
    #contact-form .agents .agent, #thanks .agents .agent {
      display: flex;
      font-size: 14px; }
      #contact-form .agents .agent .agent-name, #thanks .agents .agent .agent-name {
        font-weight: bold;
        font-size: 16px; }
      #contact-form .agents .agent .agent-license, #thanks .agents .agent .agent-license {
        font-size: 12px; }
      #contact-form .agents .agent .photo, #thanks .agents .agent .photo {
        background-size: cover;
        height: 72px;
        margin-right: 10px;
        width: 72px;
        border-radius: 50%; }
  #contact-form .form, #thanks .form {
    margin-bottom: 30px; }
    #contact-form .form input, #contact-form .form textarea, #thanks .form input, #thanks .form textarea {
      width: 100%;
      margin-bottom: 5px;
      font-family: "Open Sans";
      font-size: 14px; }
    #contact-form .form input, #thanks .form input {
      height: 34px;
      padding: 6px 12px; }
  #contact-form .send-button, #thanks .send-button {
    height: 18px;
    text-align: center;
    width: 100%;
    background-color: #D91A32;
    color: white;
    font-size: 12px;
    cursor: pointer;
    margin-top: 10px;
    padding: 5px 0px; }
    #contact-form .send-button i, #thanks .send-button i {
      margin-right: 5px; }

#map {
  width: calc(100vw - calc((315px * 3) + 17px + 15px));
  height: 100vh;
  position: absolute;
  top: 0px;
  right: 0px; }

#search {
  position: fixed;
  background-color: white;
  z-index: 10;
  top: 0px;
  display: flex;
  height: 40px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  width: calc(calc((315px * 3) + 17px + 15px) - 45px);
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end; }
  #search .input-container {
    display: flex;
    width: calc(100% - 175px); }
  #search .run-search {
    padding: 11px 15px 7px 10px;
    font-size: 20px;
    color: #D91A32;
    cursor: pointer; }
  #search .button {
    width: 130px;
    background-color: #D91A32;
    border: 1px solid white;
    color: white;
    padding: 4px 10px;
    text-align: center;
    cursor: pointer; }
  #search #advanced-search-button {
    cursor: pointer;
    font-size: 13px;
    color: #D91A32; }
    #search #advanced-search-button i {
      margin-left: 5px;
      font-size: 26px;
      position: relative;
      top: 5px; }
  #search #go {
    border-radius: 4px;
    border: 1px solid #D91A32;
    width: 100px;
    height: 24px;
    background-color: white;
    color: #D91A32;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 13px;
    cursor: pointer;
    margin-left: 15px; }
    #search #go i {
      display: none; }
  #search #go:hover {
    background-color: #D91A32;
    color: white; }
  #search #capture {
    position: fixed;
    top: 15px;
    right: 300px;
    width: auto;
    margin: 0px; }
  #search input {
    width: 250px;
    border-color: transparent;
    border-bottom: 1px solid #eeeff2;
    font-size: 16px; }
  #search #search_term {
    width: 100%; }
  #search .advanced-search {
    margin-right: 15px;
    display: none; }
  #search .sale-or-lease {
    margin-right: 15px; }
  #search .multiselect {
    min-height: 40px;
    width: 140px;
    font-size: 13px; }
    #search .multiselect .multiselect__tag {
      display: none; }
    #search .multiselect .multiselect__select::before {
      content: "\f078";
      font: normal normal 400 14px/1 "Font Awesome 5 Pro";
      border: none;
      top: 120%;
      color: #666666; }
    #search .multiselect .multiselect__option--highlight {
      background-color: #666666; }
    #search .multiselect .multiselect__select {
      width: auto;
      height: auto;
      padding: 0px;
      top: 21px;
      right: 2px; }
    #search .multiselect .multiselect__element {
      color: #666666; }
    #search .multiselect .multiselect__single {
      font-size: 13px;
      position: relative;
      padding: 0px;
      top: 11px;
      color: #666666; }
    #search .multiselect .multiselect__tags {
      border: none; }
  #search .sale-or-lease, #search .advanced-search {
    width: 170px; }
  #search .advanced-search .multiselect__single {
    color: #D91A32; }

#results {
  width: 100%;
  font-size: 14px;
  color: black;
  position: fixed;
  z-index: 10;
  top: 45px;
  left: 15px;
  height: 20px;
  padding: 5px 0px; }

#cell-container {
  position: absolute;
  top: 80px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding-left: 15px;
  width: calc((315px * 3) + 17px + 15px);
  height: auto;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: calc(100vh - 70px); }
  #cell-container #show-more {
    height: 30px;
    display: flex;
    padding: 10px 0px;
    width: calc(100% - 17px);
    justify-content: center;
    align-items: center; }
    #cell-container #show-more button {
      width: 250px;
      height: 24px;
      border: 1px solid #D91A32;
      color: #D91A32;
      margin-bottom: 0px;
      bottom: 5px;
      background-color: white;
      border-radius: 4px;
      cursor: pointer;
      position: relative;
      top: -5px;
      font-size: 13px; }
  #cell-container .property-cell {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 10px;
    margin-right: 15px;
    width: 300px;
    height: 419px; }
    #cell-container .property-cell > div {
      width: 100%;
      text-align: center;
      margin-bottom: 8px; }
    #cell-container .property-cell .agent-line {
      height: 37px;
      width: 37px;
      padding: 0px 15px;
      position: absolute;
      display: flex;
      cursor: pointer;
      justify-content: space-between;
      right: 0px;
      top: 207px; }
      #cell-container .property-cell .agent-line .agents {
        display: flex;
        height: 30px; }
        #cell-container .property-cell .agent-line .agents > div {
          height: 30px;
          width: 30px;
          background-size: cover;
          background-position: center top;
          margin-right: 5px; }
      #cell-container .property-cell .agent-line .circle {
        width: 35px;
        height: 35px;
        border: 1px solid #D91A32;
        display: flex;
        cursor: pointer;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: white; }
        #cell-container .property-cell .agent-line .circle i {
          font-size: 18px;
          color: #D91A32; }
      #cell-container .property-cell .agent-line .circle:hover {
        background-color: #D91A32; }
      #cell-container .property-cell .agent-line .circle:hover i {
        color: white; }
    #cell-container .property-cell .property-container:hover {
      background-color: #eeeff2; }
    #cell-container .property-cell .property-container {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      border: 1px solid #eeeff2;
      border-radius: 9px;
      border-top-left-radius: 9px;
      border-top-right-radius: 9px;
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
      margin-bottom: 0px; }
      #cell-container .property-cell .property-container .headline {
        color: #D91A32;
        width: calc(300px - 30px);
        padding: 0px 15px;
        font-size: 14px;
        height: 38px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        overflow: hidden;
        text-overflow: ellipsis; }
      #cell-container .property-cell .property-container > div {
        width: 100%;
        text-align: center;
        margin-bottom: 8px; }
      #cell-container .property-cell .property-container .details {
        width: calc(300px - 30px);
        padding: 0px 15px;
        display: flex;
        justify-content: space-between; }
        #cell-container .property-cell .property-container .details .border {
          border-left: 1px solid #eeeff2; }
        #cell-container .property-cell .property-container .details .details-cell {
          display: flex;
          flex-direction: column;
          justify-content: center;
          font-size: 13px;
          text-transform: capitalize; }
      #cell-container .property-cell .property-container .address-container .address, #cell-container .property-cell .property-container .address-container .csz {
        color: #D91A32;
        height: 22px; }
      #cell-container .property-cell .property-container .address-container .address {
        overflow: hidden;
        height: 22px; }
    #cell-container .property-cell .top-line {
      padding: 0px 10px;
      width: calc(300px - 20px);
      display: flex;
      justify-content: space-between;
      margin: 0px;
      font-size: 13px;
      position: absolute;
      top: 3px;
      color: white;
      background-color: transparent; }
      #cell-container .property-cell .top-line .matterport img {
        height: 36px; }
    #cell-container .property-cell .property-image {
      height: 225px;
      background-size: cover;
      background-position: center;
      margin-bottom: 20px !important;
      border-top-left-radius: 9px;
      border-top-right-radius: 9px;
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px; }
    #cell-container .property-cell .forsale {
      text-transform: uppercase; }

.dim {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center; }
  .dim i {
    font-size: 144px;
    color: white; }

#iframe {
  position: fixed;
  overflow-y: hidden;
  overflow-x: hidden;
  z-index: 99;
  display: flex;
  height: 100%;
  -webkit-overflow-scrolling: touch; }
  #iframe iframe {
    max-width: 100%; }
  #iframe .controls {
    width: 52px;
    height: 72px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center; }
    #iframe .controls > div {
      width: 52px;
      height: 52px; }
    #iframe .controls i {
      color: white;
      padding: 0px 8px;
      font-size: 36px;
      cursor: pointer; }

#mobile-bar {
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  background-color: #D91A32;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 10;
  height: auto; }
  #mobile-bar .button {
    width: 40%;
    background-color: #D91A32;
    border: 1px solid white;
    color: white;
    padding: 4px 10px;
    text-align: center;
    cursor: pointer; }

@media only screen and (min-width: 1024px) and (max-width: 1680px) {
  #map {
    width: calc(100vw - calc((315px * 2) + 17px + 15px)); }

  #mobile_map {
    display: none; }

  #all-cells-container {
    width: calc((315px * 2) + 17px + 15px); }
    #all-cells-container #capture {
      right: calc(((100vw - calc((315px * 2) + 17px + 15px)) / 2) - 100px);
      top: calc(100vh - 80px); }

  #search {
    width: calc(calc((315px * 2) + 17px + 15px) - 17px - 15px - 15px); }
    #search #go {
      width: 30px; }
      #search #go i {
        display: block; }
      #search #go span {
        display: none; }
    #search .sale-or-lease {
      display: none; }

  #cell-container {
    width: calc((315px * 2) + 17px + 15px);
    top: 30px; } }
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  #map {
    width: calc(100vw - calc((315px * 1) + 17px + 15px)); }

  #all-cells-container #capture {
    right: calc(((100vw - calc((315px * 1) + 17px + 15px)) / 2) - 90px); }
  #all-cells-container #advanced {
    position: absolute;
    top: 0px;
    width: 95vw;
    padding: 15px 0px;
    left: 2.5vw;
    max-width: none; }

  #search {
    width: calc(calc((315px * 1) + 17px + 15px) - 17px - 15px); }
    #search #search_term {
      width: 125px; }
    #search .property-type, #search .sale-or-lease {
      display: none; }

  #cell-container {
    width: calc((315px * 1) + 17px + 15px); } }
@media only screen and (min-width: 300px) and (max-width: 600px) {
  #contact-form, #thanks {
    width: 95%;
    left: 2.5%; }

  #search_term {
    width: 50%; }

  .iframe_close {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 998;
    width: 100%;
    height: 35px;
    background-color: #c21a32;
    color: white;
    padding: 3px 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid white; }

  #advanced {
    position: absolute;
    top: 0px;
    width: 100vw;
    max-width: 100vw;
    left: 0px;
    padding: 0px;
    padding-top: 15px; }
    #advanced .close {
      top: 10px;
      right: 15px; }
    #advanced .right {
      padding: 0px;
      margin: 0px; }

  #map {
    display: none; }

  #mobile_map {
    height: calc(100vh - 80px);
    position: absolute;
    top: 80px;
    left: 0px;
    display: initial;
    width: 100vw; }
    #mobile_map .gm-style-iw-c {
      padding: 12px !important; }

  #all-cells-container {
    width: 100vw;
    overflow-y: auto;
    z-index: 5; }
    #all-cells-container #cell-container {
      z-index: 5; }
    #all-cells-container #capture {
      display: none; }

  #search {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 0px 10px;
    width: calc(100% - 20px); }
    #search #advanced-search-button {
      font-size: 16px; }
    #search input {
      font-size: 16px; }
    #search input:placeholder-shown {
      font-size: 16px; }
    #search input:-moz-placeholder {
      font-size: 16px; }
    #search input::-webkit-input-placeholder {
      font-size: 16px; }
    #search #go {
      display: none; }
    #search .input-container {
      width: calc(100% - 48px); }
    #search #search_term {
      font-size: 16px;
      width: 100%; }
    #search .property-type, #search .sale-or-lease {
      display: none; }

  #results {
    position: absolute;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    display: flex;
    padding: 10px 15px;
    top: 40px;
    left: 0px;
    width: calc(100vw - 30px); }
    #results > div {
      font-size: 16px; }
    #results .view_button {
      background-color: #D91A32;
      border-radius: 3px;
      color: white;
      padding: 3px 15px;
      width: auto;
      text-align: center;
      cursor: pointer;
      font-size: 16px; }
    #results .view_button:hover {
      background-color: #D91A32;
      color: white; }

  #cell-container {
    width: 100vw;
    background-color: white;
    justify-content: center;
    padding: 0px;
    padding-top: 10px; }
    #cell-container #show-more {
      padding-bottom: 52px; }
    #cell-container .property-cell {
      width: 300px; }
      #cell-container .property-cell .top-line {
        width: calc(300px - 20px); }

  #iframe {
    overflow: auto;
    position: relative;
    height: calc(100% - 42px);
    -webkit-overflow-scrolling: touch; }
    #iframe .controls {
      display: none; } }
@media only screen and (min-width: 300px) and (max-width: 600px) {
  #cell-container .property-cell {
    font-size: calc(125vw * .0382);
    margin-right: 5px;
    width: 90vw;
    height: 125vw; }
    #cell-container .property-cell .property-image {
      height: calc(125vw * .537);
      margin-bottom: calc(125vw * .0477) !important; }
    #cell-container .property-cell .agent-line {
      top: calc(125vw * .494);
      width: calc(90vw * .123);
      height: calc(90vw * .123); }
      #cell-container .property-cell .agent-line .circle {
        width: calc(90vw * .117);
        height: calc(90vw * .117); }
        #cell-container .property-cell .agent-line .circle i {
          font-size: calc(125vw * .043); }
    #cell-container .property-cell .top-line {
      width: calc(90vw - 20px);
      font-size: calc(125vw * .031); }
    #cell-container .property-cell .property-container > div {
      margin-bottom: calc(125vw * .019); }
    #cell-container .property-cell .property-container .address-container .address {
      height: calc(125vw * .0525); }
    #cell-container .property-cell .property-container .address-container .csz {
      height: calc(125vw * .0525); }
    #cell-container .property-cell .property-container .headline {
      width: calc(90vw - 30px);
      font-size: calc(125vw * .033);
      height: calc(125vw * .09); }
    #cell-container .property-cell .property-container .details {
      width: calc(90vw - 30px); }
      #cell-container .property-cell .property-container .details .details-cell {
        font-size: calc(125vw * .031); } }
@media only screen and (min-width: 601px) and (max-width: 999px) {
  #map {
    display: none; }

  .iframe_close {
    position: absolute;
    top: 11px;
    right: 75px;
    z-index: 998;
    width: auto;
    height: auto;
    background-color: #c21a32;
    color: white;
    padding: 3px 6px;
    cursor: pointer;
    border-radius: 3px; }

  #mobile_map {
    height: calc(100vh - 80px);
    position: absolute;
    top: 80px;
    left: 0px;
    display: initial;
    width: 100vw; }
    #mobile_map .gm-style-iw-c {
      padding: 12px !important; }

  #all-cells-container {
    overflow-y: auto;
    width: 100vw;
    z-index: 5; }
    #all-cells-container #capture {
      display: none; }
    #all-cells-container #advanced {
      top: 0px;
      width: 95vw;
      padding: 15px 0px;
      left: 2.5vw;
      max-width: none; }

  #search {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 0px 10px;
    width: 100%; }
    #search #advanced-search-button {
      font-size: 16px; }
    #search input {
      font-size: 16px; }
    #search input:placeholder-shown {
      font-size: 16px; }
    #search input:-moz-placeholder {
      font-size: 16px; }
    #search input::-webkit-input-placeholder {
      font-size: 16px; }
    #search #go {
      display: none; }
    #search #search_term {
      font-size: 16px;
      width: calc(100vw - 190px); }
    #search .property-type, #search .sale-or-lease {
      display: none; }

  #results {
    position: absolute;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    display: flex;
    padding: 10px 15px;
    top: 40px;
    left: 0px;
    width: calc(100vw - 30px); }
    #results > div {
      font-size: 16px; }
    #results .view_button {
      background-color: #D91A32;
      border-radius: 3px;
      color: white;
      padding: 3px 15px;
      width: auto;
      text-align: center;
      cursor: pointer;
      font-size: 16px; }
    #results .view_button:hover {
      background-color: #D91A32;
      color: white; }

  #all-cells-container {
    width: 100vw;
    z-index: 5; }
    #all-cells-container #capture {
      display: none; }
    #all-cells-container #cell-container {
      width: 100vw;
      background-color: white;
      justify-content: center;
      padding: 0px;
      padding-top: 10px;
      z-index: 5; }
      #all-cells-container #cell-container .property-cell {
        font-size: calc(calc(48vw * 1.396) * .0382);
        margin-right: 5px;
        width: 48vw;
        height: calc(48vw * 1.396); }
        #all-cells-container #cell-container .property-cell .property-image {
          height: calc(calc(48vw * 1.396) * .537);
          margin-bottom: calc(calc(48vw * 1.396) * .0477) !important; }
        #all-cells-container #cell-container .property-cell .agent-line {
          top: calc(calc(48vw * 1.396) * .494);
          width: calc(48vw * .123);
          height: calc(48vw * .123); }
          #all-cells-container #cell-container .property-cell .agent-line .circle {
            width: calc(48vw * .117);
            height: calc(48vw * .117); }
            #all-cells-container #cell-container .property-cell .agent-line .circle i {
              font-size: calc(calc(48vw * 1.396) * .043); }
        #all-cells-container #cell-container .property-cell .top-line {
          width: calc(48vw - 20px);
          font-size: calc(calc(48vw * 1.396) * .031); }
        #all-cells-container #cell-container .property-cell .property-container > div {
          margin-bottom: calc(calc(48vw * 1.396) * .019); }
        #all-cells-container #cell-container .property-cell .property-container .address-container .address {
          height: calc(calc(48vw * 1.396) * .0525); }
        #all-cells-container #cell-container .property-cell .property-container .address-container .csz {
          height: calc(calc(48vw * 1.396) * .0525); }
        #all-cells-container #cell-container .property-cell .property-container .headline {
          width: calc(48vw - 30px);
          font-size: calc(calc(48vw * 1.396) * .033);
          height: calc(calc(48vw * 1.396) * .09); }
        #all-cells-container #cell-container .property-cell .property-container .details {
          width: calc(48vw - 30px); }
          #all-cells-container #cell-container .property-cell .property-container .details .details-cell {
            font-size: calc(calc(48vw * 1.396) * .031); } }
@media only screen and (min-width: 680px) and (max-width: 800px) and (min-height: 300px) and (max-height: 600px) {
  .dim {
    position: absolute; }

  #all-cells-container {
    overflow-y: scroll; }

  #advanced {
    width: calc(95vw - 20px);
    max-width: none;
    padding: 15px 10px 15px 10px;
    left: 2.5vw;
    top: 0px !important; }
    #advanced .advanced-search {
      padding-bottom: 0px; }
      #advanced .advanced-search .sale-lease {
        margin-right: 10px;
        margin-bottom: 8px; }
      #advanced .advanced-search > div {
        width: 48%;
        max-width: 48%; }
      #advanced .advanced-search .city-state {
        margin-right: 2px; }
      #advanced .advanced-search .input-container {
        width: 48%;
        margin-right: 10px;
        margin-bottom: 0px; }
        #advanced .advanced-search .input-container .input-wrapper {
          margin-bottom: 8px; }
      #advanced .advanced-search .state {
        margin-right: 10px; }
    #advanced .close {
      top: 10px;
      right: 10px; } }
@media only screen and (min-height: 500px) and (max-height: 600px) {
  .dim {
    position: absolute; }

  #iframe {
    height: 100%; }

  #advanced {
    top: 25px;
    padding-top: 10px; }
    #advanced .advanced-search .input-wrapper {
      margin-bottom: 6px; }
    #advanced .advanced-search .sale-lease {
      margin-bottom: 6px; }
    #advanced .advanced-search .advanced-search {
      padding-bottom: 6px; }
    #advanced .advanced-search .multiselect {
      margin-bottom: 6px; }
    #advanced .advanced-search .input-wrapper.bottom {
      margin-bottom: 6px; }
    #advanced .close {
      top: 5px;
      right: 10px; } }

/*# sourceMappingURL=new_public_search.css.map */
