/*
    Resources used:
    bootstrap css
    bootstrap icons
    bq-common.css file
*/

@import url("https://cdn.builderq.ca/css/bq-common.css?id=5454");

/* Edit Colors for Cards*/
:root {
  --btn-bg-color: black;
  --bq-card-bg: #fff;
  --bq-card-bg-hover: #fbfbfb;
  --bq-card-border-color: red;
}


/* DO NOT EDIT */
.bq-property-card > div {
  transition: all 0.2s ease-in-out;
  background-color: var(--bq-card-bg);
  border-color: var(--bq-card-border-color);
}
.bq-property-card > div:hover {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--bq-card-bg-hover);
}

.bq-property-card-btn {
  background-color: var(--btn-bg-color);
  color: white;
}

.bq-property-card-style-2 .bq-property-card-btn {
  border-color: var(--btn-bg-colors) !important;
  background-color: white;
  color: black;
}
.bq-property-card-style-2 .bi {
  font-size: 12px;
}
.bq-property-card-style-2 li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.bq-property-card-style-3 {
  min-height: 250px;
}
.bq-property-card-style-3 .property-side-links {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.bq-property-card-style-3:hover .property-side-links {
  opacity: 1;
  visibility: visible;
}
