.kv-map {
  min-height: 480px;
  height: 25vh;
  max-height:720px;

  width: 100%;
}

.kv-map-popup-mls-logo {
  height: 25px; 
  max-width: 55px;
  &-white {
    height: 25px; 
    max-width: 55px;
    background-color:#fff;
  }
}

.kv-listing-marker {
  width: 24px;
  height: 24px;
  background-image: url('../images/marker.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: width, height 100ms;
}

.kv-marker {
  background-color: #000;
  font-size: 10px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 0 10px;
  line-height:14px;
  height:19px;
  cursor: pointer;
  transition: all .15s linear;

  &-scaled {
    width: 40px;
    height: 40px;
    z-index: 9999;
  }
}
.kv-marker:before {
  border: 4px solid transparent;
  border-width: 11px 6px;
  border-top-color: #000000;
  bottom: -20px;
  height: 0;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 11; 
}
.kv-marker:after {
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 12; 
}

.kv-map-popup {
  position: relative;
  width: 200px;
  height: 170px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  z-index: 13;

  .kv-map-popup-address-wrapper {
    display:flex;
    justify-content:space-between;
    margin:5px;
  }

  .kv-map-popup-disclaimer-wrapper {
    text-align:center;
    background-color:#000;
    padding:5px;
    line-height:1;
  }

  .text-center {
    position: absolute;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    font-weight: 500;
    color: #FDB813;

    &-top {
      top: 0;
    }

    &-bottom {
      bottom: 0;
    }

    .address {
      font-weight: 500;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .price {
      font-size: 15px;
      font-weight: 600;
      color: white;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .other-info {
      font-weight: 300;

      span {
        padding: 1px 3px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 2px;
      }
    }
  }
}