.bs-canvas-overlay {
  opacity: 0.85;
  z-index: 1100;
}

.bs-canvas {
  top: 0;
  z-index: 1110;
  overflow-x: hidden;
  overflow-y: auto;
  width: 330px;
  transition: margin .4s ease-out;
  -webkit-transition: margin .4s ease-out;
  -moz-transition: margin .4s ease-out;
  -ms-transition: margin .4s ease-out;
}

.bs-canvas-left {
  left: 0;
  margin-left: -330px;
}

.bs-canvas-right {
  right: 0;
  margin-right: -330px;
}

.bs-canvas-header {
  background: var(--primary_color);

}



.bookmark-list {
  /* position: fixed;
  z-index: 100000; */
  /* right: 25px; */
  /* bottom: 120px; */
  background-color: #eeeeee91;
  border-radius: 40px;
  /* padding: 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

}

.bookmark-list:hover {
  background-color: #d8dad9;
}

.bookmark-list i {
  /* font-size: 27px; */
  color: red;

}


.bookmark-item .card {
  min-height: 120px;
}


.bookmark-list-items .card {
  display: flex;
  flex-direction: row;
  color: rgb(35, 35, 35)
}

.bookmark-list-items .card .default-image {
  width: 35%;
  border-start-start-radius: inherit;
  border-end-start-radius: inherit;
}

.bookmark-list-items .card .default-image img {
  width: 100%;
  border-start-start-radius: 5px;
  border-end-start-radius: 5px;
}

.bookmark-list-items .card .description {
  /* padding: 25px 0px 5px 15px;    
     */
  padding: 5px 0px 5px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.bookmark-list-items .card .description .title {
  font-weight: bolder;
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 5%;
  text-overflow: ellipsis;
  font-size: small;

}

/* .bookmark-list-items .card .description .price{
  } */
.bookmark-list-items .card .description .price {
  font-size: small;
}

.bookmark-list-items .card .description .price em {
  font-weight: 500;
}

.property-bookmark-ref {
  position: absolute;
  /* right: 1%;
    top:5% */

  left: 1%;
  top: 1%;

  font-style: italic;
  color:#fff;
  background: var(--secondary_color);

}

.bookmark-delete i {
  font-size: 1.3rem;
}

.bookmark-delete {
  /* position: absolute;
    bottom: 0;
    right: 2%;
    color: #636363; */


  position: absolute;
  bottom: -10%;
  right: -2%;
  /* height: auto; */
  color: #636363;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;

}

.empty-bookmark{
  font-size: 15px;
  color: #676464;
  font-style: initial;
  text-align: center;

}