@import url(https://fonts.googleapis.com/css?family=Lato:100,200,300,400,400i,700,700i&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Lato:100,200,300,400,400i,700,700i&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap);
.account-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Montserrat; }
  .account-wrapper .signin-doss-logo {
    width: 100px;
    position: absolute;
    top: 22px;
    left: 40px; }
    .account-wrapper .signin-doss-logo:hover {
      cursor: pointer; }
    @media screen and (max-width: 500px) {
      .account-wrapper .signin-doss-logo {
        left: 20px; } }
  .account-wrapper .account-container {
    width: 1020px;
    max-width: 1020px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .account-wrapper .account-container .account-content {
      width: 420px;
      position: relative;
      opacity: 0;
      animation: up ease;
      animation-duration: 1s;
      animation-fill-mode: forwards; }
      .account-wrapper .account-container .account-content .title {
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.2;
        color: #18457B;
        margin-bottom: 32px; }
      .account-wrapper .account-container .account-content .sub-title {
        font-size: 1.25rem;
        line-height: 1.3;
        color: #18457B;
        margin-bottom: 32px; }
      .account-wrapper .account-container .account-content form {
        margin-bottom: 16px;
        display: flex;
        flex-direction: column; }
        .account-wrapper .account-container .account-content form .form-title {
          font-weight: 700;
          font-size: 1.25rem;
          color: #18457B;
          margin-bottom: 8px; }
        .account-wrapper .account-container .account-content form input {
          width: 80%;
          height: 45px;
          padding: 0 16px;
          margin-bottom: 16px;
          border-radius: 5px;
          border: 1px solid #89aed8;
          font-weight: 500;
          color: #18457B;
          outline: none; }
          .account-wrapper .account-container .account-content form input::placeholder {
            font-weight: 500;
            color: #5e87b6; }
          .account-wrapper .account-container .account-content form input:focus {
            border: 2px solid #18457B; }
        .account-wrapper .account-container .account-content form .form-error {
          font-size: 0.75rem;
          font-weight: 500;
          color: #E02424; }
        .account-wrapper .account-container .account-content form button {
          width: 80%;
          height: 45px;
          border-radius: 5px;
          border: none;
          background: #18457B;
          color: white;
          font-weight: 700;
          transition: 0.2s ease; }
          .account-wrapper .account-container .account-content form button p {
            margin: 0; }
          .account-wrapper .account-container .account-content form button .hide {
            display: none; }
          .account-wrapper .account-container .account-content form button:hover {
            box-shadow: 0 5px 15px rgba(24, 69, 123, 0.1); }
      .account-wrapper .account-container .account-content .sign-in {
        color: #18457B;
        margin-bottom: 4px; }
        .account-wrapper .account-container .account-content .sign-in span {
          font-weight: 600;
          text-decoration: underline; }
          .account-wrapper .account-container .account-content .sign-in span:hover {
            cursor: pointer;
            color: #4875ac; }
    .account-wrapper .account-container .account-image {
      height: 650px;
      width: 500px;
      border-radius: 10px;
      background-image: url("/images/doss-account-img.jpg");
      background-size: cover;
      background-position: center; }
    @media screen and (max-width: 1060px) {
      .account-wrapper .account-container {
        width: 90vw;
        justify-content: center; }
        .account-wrapper .account-container .account-image {
          display: none; } }
    @media screen and (max-width: 500px) {
      .account-wrapper .account-container .account-content {
        width: 100%; }
        .account-wrapper .account-container .account-content form input {
          width: 100%; }
        .account-wrapper .account-container .account-content form button {
          width: 100%; }
        .account-wrapper .account-container .account-content .sign-in {
          text-align: center; } }

@keyframes up {
  0% {
    opacity: 0;
    bottom: -50px; }
  100% {
    opacity: 1;
    bottom: 0px; } }

.signup-modal-wrapper {
  position: fixed;
  z-index: 150;
  background: rgba(0, 0, 0, 0.2);
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  font-family: Montserrat;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: 0.2s ease-in-out;
  opacity: 0; }

.signup-modal {
  width: 400px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translateY(-10px); }
  @media screen and (max-width: 500px) {
    .signup-modal {
      width: 95vw; } }
  .signup-modal p {
    margin: 0; }
  .signup-modal .signup-modal-header {
    background: rgba(224, 36, 36, 0.1);
    padding: 16px;
    border-radius: 5px 5px 0 0; }
    .signup-modal .signup-modal-header p {
      font-size: 1.125rem;
      font-weight: 700;
      color: #E02424; }
  .signup-modal .signup-modal-body {
    padding: 16px;
    border-radius: 0 0 5px 5px; }
    .signup-modal .signup-modal-body p {
      color: #18457B;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.5; }

.signup-wrapper-open {
  pointer-events: all;
  opacity: 1; }

.signup-open {
  opacity: 1;
  transform: translateY(0); }

.forgot-pass {
  color: #18457B; }
  .forgot-pass:hover {
    text-decoration: underline;
    cursor: pointer; }
  @media screen and (max-width: 500px) {
    .forgot-pass {
      text-align: center; } }

.doss-search-container {
  font-family: Montserrat;
  width: 100%;
  padding: 12px 0;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; }
  @media screen and (max-width: 600px) {
    .doss-search-container {
      min-height: 50vh; } }

.doss-responses {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media screen and (max-width: 600px) {
    .doss-responses {
      width: 90vw; } }

.doss-response-text {
  color: #18457B;
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 20px; }

.doss-search-form {
  width: 100%;
  margin-bottom: 32px; }
  .doss-search-form input {
    text-align: center;
    width: 100%;
    height: 30px;
    padding: 0 16px;
    border: none;
    border-bottom: 1px solid #89aed8;
    font-weight: 500;
    color: #18457B;
    outline: none; }
    .doss-search-form input::placeholder {
      font-weight: 500;
      text-align: center;
      color: #5e87b6; }
    .doss-search-form input:focus {
      border: none;
      border-bottom: 2px solid #18457B; }

.interaction-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; }

.doss-microphone-container {
  margin-bottom: 20px; }
  .doss-microphone-container:hover {
    cursor: pointer; }

.doss-microphone-button {
  height: 75px;
  width: 75px;
  padding: 0;
  margin: 16px 16px 32px 16px;
  border-radius: 50px;
  border: none;
  background: #ED6D3E;
  outline: none; }
  .doss-microphone-button:active {
    background: #dd6032;
    outline: none; }
  .doss-microphone-button:focus {
    outline: none; }

.doss-keyboard-button {
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 50px;
  border: none;
  background: #18457B; }
  .doss-keyboard-button:active {
    background: #113868; }

.microphone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  width: 75px; }

.mic-play {
  z-index: 1;
  transition: 0.15s ease; }

.mic-stop {
  z-index: 0;
  transition: 0.3s ease; }

.mic-default {
  position: absolute;
  transform: scale(0.5);
  opacity: 0;
  pointer-events: none; }

.mic-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all; }

.doss-mic-stop-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }

.doss-mic-stop {
  height: 75px;
  width: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: none;
  outline: none; }

.stop-square {
  position: absolute;
  height: 25px;
  width: 25px;
  background: #ED6D3E; }

.pulse {
  animation: pulsing 1s infinite ease-in-out; }

@keyframes pulsing {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    background: #FAD4C6; }
  60% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    background: #FDE9E2; }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    background: #FAD4C6; } }

.traditional-search-form {
  margin: 32px 0; }
  .traditional-search-form .form-location {
    margin-bottom: 24px; }
    .traditional-search-form .form-location input {
      width: 100%;
      height: 40px;
      padding: 0 8px;
      color: #18457B;
      border: none;
      border-bottom: 1px solid #18457B; }
    .traditional-search-form .form-location input:focus {
      outline: none;
      border-bottom: 2px solid #113868; }
    .traditional-search-form .form-location input::placeholder {
      color: #5e87b6; }
    .traditional-search-form .form-location .error {
      font-size: 12px;
      padding-top: 8px;
      color: red; }
    @media screen and (min-width: 700px) {
      .traditional-search-form .form-location {
        width: 100%; } }
  .traditional-search-form .form-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px; }
    @media screen and (min-width: 700px) {
      .traditional-search-form .form-price {
        width: 42%; } }
  .traditional-search-form .form-bedbath {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px; }
    @media screen and (min-width: 700px) {
      .traditional-search-form .form-bedbath {
        width: 42%; } }
  .traditional-search-form .form-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
  .traditional-search-form label {
    font-weight: 600;
    margin: 0; }
  .traditional-search-form select {
    width: 120px;
    height: 40px;
    color: #18457B;
    background: none;
    border: none;
    border-bottom: 1px solid #18457B; }
  .traditional-search-form .search-button {
    position: relative;
    color: white;
    background: #18457B;
    padding: 8px 16px;
    border-radius: 5px;
    border: none;
    width: 100%; }
    @media screen and (min-width: 700px) {
      .traditional-search-form .search-button {
        width: 160px;
        margin-left: calc(100% - 160px); } }
  @media screen and (min-width: 700px) {
    .traditional-search-form {
      max-width: 700px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap; } }

.button-loading .button-text {
  visibility: hidden;
  opacity: 0; }

.button-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite; }

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn); }
  to {
    transform: rotate(1turn); } }

.doss-navbar {
  background-color: rgba(0, 0, 0, 0.1); }
  .doss-navbar .navbar-item {
    color: white !important; }
  .doss-navbar .navbar-toggler {
    border-color: white; }
  .doss-navbar .doss-logo {
    width: 100px;
    height: auto;
    max-height: 70px; }
    .doss-navbar .doss-logo:hover {
      cursor: pointer; }
  .doss-navbar .navbar-menu.is-active {
    background: transparent !important; }
  .doss-navbar .navbar-burger {
    color: #ffffff; }
    .doss-navbar .navbar-burger:hover {
      color: #ffffff; }

.Overlay {
  z-index: 99;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(1, 1, 1, 0.4);
  overflow: hidden; }

.SearchOverlay {
  z-index: 99;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden; }

.SearchModal {
  position: absolute;
  left: 0;
  right: 0;
  top: 56%;
  bottom: 0;
  background-color: #14508d;
  box-shadow: 0 0 10px 0 rgba(0, 0, 97, 0.5);
  color: white;
  overflow: hidden;
  border-radius: 4px;
  outline: none; }

.Modal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border-radius: 4px;
  outline: none; }
  @media screen and (max-width: 475px) {
    .Modal {
      right: 10%; } }

.marker-property-card {
  cursor: pointer;
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
  height: 95%;
  width: 95%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start; }
  .marker-property-card .marker-property-card-body {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  .marker-property-card .marker-property-description {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
    width: 100%;
    padding: .5em;
    border-radius: 0 0 5px 5px; }
  .marker-property-card .marker-property-status {
    background-color: white;
    padding: 1px 7px;
    margin: .5em;
    border-radius: 50px;
    display: flex;
    align-items: center; }
    .marker-property-card .marker-property-status p {
      margin: 0;
      color: #39b54a; }
  .marker-property-card .marker-address {
    font-weight: 300;
    letter-spacing: 0.75px;
    font-size: 10px; }
  .marker-property-card .marker-price {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px; }
  .marker-property-card .marker-amenities {
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 1px; }

.marker-indicator-circle {
  height: 7px;
  width: 7px;
  border-radius: 20px;
  margin-right: 5px; }

.marker-green {
  background-color: #39b54a; }

.doss-alert {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px;
  margin-bottom: 24px;
  width: 80%;
  border-radius: 10px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
  .doss-alert .alert-header {
    display: flex;
    align-items: flex-start; }
  .doss-alert .doss-error {
    width: 20px;
    margin-right: 12px; }
  .doss-alert p {
    font-family: Montserrat;
    font-size: 1rem;
    color: #E02424;
    margin-bottom: 0;
    margin-right: 12px; }
  .doss-alert .success-msg {
    color: #246d34; }
  .doss-alert .doss-cross {
    width: 8px;
    padding-bottom: 3px; }
    .doss-alert .doss-cross:hover {
      cursor: pointer; }
  @media screen and (max-width: 500px) {
    .doss-alert {
      width: 100%; } }

.alert-remove {
  display: none; }

.waitlist-wrapper {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Montserrat; }
  @media screen and (max-width: 1060px) {
    .waitlist-wrapper {
      height: auto;
      margin: 50px 0 70px 0; } }
  .waitlist-wrapper .waitlist-container {
    width: 1020px;
    max-width: 1020px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .waitlist-wrapper .waitlist-container .waitlist-content {
      width: 420px;
      position: relative;
      opacity: 0;
      animation: right ease;
      animation-duration: 1.5s;
      animation-fill-mode: forwards; }
      .waitlist-wrapper .waitlist-container .waitlist-content .waitlist-content-img {
        width: 130px;
        margin-bottom: 8px; }
      .waitlist-wrapper .waitlist-container .waitlist-content .title {
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.2;
        color: #18457B;
        margin-bottom: 8px; }
      .waitlist-wrapper .waitlist-container .waitlist-content .sub-title {
        font-size: 1.25rem;
        line-height: 1.3;
        color: #18457B;
        margin-bottom: 32px; }
      .waitlist-wrapper .waitlist-container .waitlist-content form {
        margin-bottom: 16px;
        display: flex;
        flex-direction: column; }
        .waitlist-wrapper .waitlist-container .waitlist-content form .form-error {
          font-size: 0.75rem;
          font-weight: 500;
          color: #E02424; }
        .waitlist-wrapper .waitlist-container .waitlist-content form .form-title {
          font-weight: 700;
          font-size: 1.25rem;
          color: #18457B;
          margin-bottom: 8px; }
        .waitlist-wrapper .waitlist-container .waitlist-content form input {
          width: 80%;
          height: 45px;
          padding: 0 16px;
          margin-bottom: 8px;
          border-radius: 5px;
          border: 1px solid #89aed8;
          font-weight: 500;
          color: #18457B;
          outline: none; }
          .waitlist-wrapper .waitlist-container .waitlist-content form input::placeholder {
            font-weight: 500;
            color: #5e87b6; }
          .waitlist-wrapper .waitlist-container .waitlist-content form input:focus {
            border: 2px solid #18457B; }
        .waitlist-wrapper .waitlist-container .waitlist-content form button {
          width: 80%;
          height: 45px;
          border-radius: 5px;
          border: none;
          background: #ED6D3D;
          color: white;
          font-weight: 700;
          transition: 0.2s ease; }
          .waitlist-wrapper .waitlist-container .waitlist-content form button .hide {
            display: none; }
          .waitlist-wrapper .waitlist-container .waitlist-content form button p {
            margin: 0; }
          .waitlist-wrapper .waitlist-container .waitlist-content form button:hover {
            box-shadow: 0 5px 15px rgba(24, 69, 123, 0.1); }
      .waitlist-wrapper .waitlist-container .waitlist-content .sign-in {
        color: #18457B; }
        .waitlist-wrapper .waitlist-container .waitlist-content .sign-in span {
          font-weight: 600;
          text-decoration: underline; }
          .waitlist-wrapper .waitlist-container .waitlist-content .sign-in span:hover {
            cursor: pointer;
            color: #4875ac; }
    .waitlist-wrapper .waitlist-container .waitlist-image {
      height: 650px;
      width: 500px;
      border-radius: 10px;
      background-image: url("/images/doss-waitlist-img.jpg");
      background-size: cover;
      background-position: center;
      position: relative;
      opacity: 0;
      animation: left ease;
      animation-duration: 1.5s;
      animation-fill-mode: forwards; }
    @media screen and (max-width: 1060px) {
      .waitlist-wrapper .waitlist-container {
        width: 90vw;
        justify-content: center; }
        .waitlist-wrapper .waitlist-container .waitlist-image {
          display: none; } }
    @media screen and (max-width: 500px) {
      .waitlist-wrapper .waitlist-container .waitlist-content {
        width: 100%;
        animation: none;
        opacity: 1; }
        .waitlist-wrapper .waitlist-container .waitlist-content form input {
          width: 100%; }
        .waitlist-wrapper .waitlist-container .waitlist-content form button {
          width: 100%; }
        .waitlist-wrapper .waitlist-container .waitlist-content .sign-in {
          text-align: center; } }

@keyframes left {
  0% {
    opacity: 0;
    left: -50px; }
  100% {
    opacity: 1;
    left: 0px; } }

@keyframes right {
  0% {
    opacity: 0;
    right: -50px; }
  100% {
    opacity: 1;
    right: 0px; } }

.doss-loading {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .doss-loading p {
    color: #EF6E40;
    font-family: Montserrat;
    font-weight: 600;
    margin-top: 8px; }

.property-page {
  font-family: Montserrat;
  color: #2B2B2B; }

@media screen and (min-width: 1060px) {
  .property-content-container {
    width: 600px;
    margin-left: 20vw; } }

.property-map {
  height: 350px;
  width: 100%; }

.property-back-bar {
  display: inline-flex;
  align-items: center;
  padding: 12px 8px; }
  .property-back-bar p {
    margin: 0 0 0 4px;
    color: #18457B; }
  .property-back-bar:hover {
    cursor: pointer; }
  @media screen and (min-width: 1060px) {
    .property-back-bar {
      padding: 24px 0 24px 20vw; } }

.property-image-container {
  display: inline-flex;
  position: relative; }
  .property-image-container .show-images {
    position: absolute;
    bottom: 8px;
    right: 8px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    color: #2B2B2B;
    font-weight: 500;
    background: white;
    padding: 8px 12px; }
    .property-image-container .show-images:hover {
      background: #f5f0f0; }
  .property-image-container .property-image-large {
    width: 100vw;
    max-width: 100%;
    height: 350px;
    background-size: cover; }
  .property-image-container .secondary-image-container {
    display: none; }
  @media screen and (min-width: 1060px) {
    .property-image-container {
      margin-left: 18vw; }
      .property-image-container .property-image-large {
        width: 550px;
        height: 350px;
        border-radius: 5px; }
      .property-image-container .secondary-image-container {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        margin-left: 12px; }
        .property-image-container .secondary-image-container .secondary-image {
          width: 260px;
          height: 170px;
          background-size: cover;
          border-radius: 5px; } }

.property-details {
  padding: 20px;
  border-bottom: 1px solid #E6E6E6; }
  .property-details p {
    margin: 0; }
  .property-details .property-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between; }
    .property-details .property-price .loveit-heart {
      position: relative;
      right: 0;
      top: -5px; }
  .property-details .property-address {
    font-size: 0.875rem;
    font-weight: 300;
    margin-bottom: 12px; }
  .property-details .property-status {
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center; }
    .property-details .property-status .green-circle {
      height: 15px;
      width: 15px;
      margin-right: 8px;
      background: #8CC63F;
      border-radius: 50px; }

.property-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-bottom: 1px solid #E6E6E6; }
  .property-features .feature-icon {
    width: 50px; }
  .property-features .icon-center {
    text-align: center; }
  .property-features p {
    font-size: 1rem;
    margin: 0; }

.property-overview {
  padding: 20px;
  border-bottom: 1px solid #E6E6E6; }
  .property-overview p {
    font-size: 1rem;
    margin: 0; }
  .property-overview .overview-title {
    font-weight: 700;
    margin-bottom: 8px; }

.property-general-info {
  padding: 20px;
  border-bottom: 1px solid #E6E6E6; }
  .property-general-info p {
    font-size: 1rem;
    margin: 0; }
  .property-general-info .general-title {
    font-weight: 700;
    margin-bottom: 8px; }
  .property-general-info .general-info span {
    font-weight: 600; }
  .property-general-info .general-info div {
    margin-bottom: 8px; }

.buyer-rebate-price p {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0; }

.buyer-qualify {
  margin: 16px 0 8px 0; }
  .buyer-qualify p {
    display: inline;
    font-weight: 600;
    color: #EF6C40; }
    .buyer-qualify p:hover {
      cursor: pointer;
      text-decoration: underline; }

.rebate-modal-wrapper {
  position: fixed;
  z-index: 150;
  background: rgba(0, 0, 0, 0.2);
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: 0.2s ease-in-out;
  opacity: 0; }

.rebate-modal {
  width: 400px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translateY(-10px); }
  @media screen and (max-width: 500px) {
    .rebate-modal {
      width: 95vw; } }
  .rebate-modal p {
    margin: 0; }
  .rebate-modal .rebate-modal-header {
    background: rgba(24, 69, 123, 0.1);
    padding: 16px;
    border-radius: 5px 5px 0 0; }
    .rebate-modal .rebate-modal-header p {
      font-size: 1.125rem;
      font-weight: 700;
      color: #18457B; }
  .rebate-modal .rebate-modal-body {
    padding: 16px;
    border-radius: 0 0 5px 5px; }
    .rebate-modal .rebate-modal-body p {
      color: #18457B;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.5; }

.rebate-wrapper-open {
  pointer-events: all;
  opacity: 1; }

.rebate-open {
  opacity: 1;
  transform: translateY(0); }

.toolbar-padding {
  padding-top: 70px; }
  @media screen and (min-width: 1060px) {
    .toolbar-padding {
      padding-top: 0; } }

.doss-property-card {
  cursor: pointer;
  background-size: cover;
  background-position: center center;
  height: 250px;
  margin: 7px;
  color: white;
  border-radius: 5px;
  transition: 0.2s ease; }
  .doss-property-card .doss-property-card-body {
    padding: 0px;
    height: 100%; }
  .doss-property-card .doss-property-description {
    padding: 25px 10px 10px 10px;
    border-radius: 5px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%); }
  .doss-property-card .doss-property-status {
    background-color: white;
    border-radius: 50px;
    padding: 2px 7px;
    margin: 10px;
    display: flex;
    align-items: center; }
    .doss-property-card .doss-property-status p {
      color: #38B249;
      font-size: 14px;
      font-weight: 500;
      margin: 0; }
  .doss-property-card .doss-address {
    font-weight: 300;
    letter-spacing: 0.75px;
    font-size: 14px; }
  .doss-property-card .doss-price {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 2px; }
  .doss-property-card .doss-amenities {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px; }

.doss-indicator-circle {
  height: 10px;
  width: 10px;
  border-radius: 20px;
  margin-right: 5px; }

.doss-green {
  background-color: #38B249; }

.amenities-container {
  display: flex; }

.amenity {
  margin-right: 10px;
  display: flex;
  align-items: center; }
  .amenity p {
    margin-bottom: 0;
    padding-left: 5px; }

.property-card-wrapper {
  position: relative; }

.loveit-heart-button {
  position: absolute;
  top: 5px;
  right: 20px; }

