
.costs-list{
  list-style-type: none;
  padding:0;
}

.costs-list li{
  margin-bottom:5px;
}

.wishlist-center{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  margin-top:-5px;
  gap: 1em;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh;
  background-color: rgb(255,255,255,0.4);
}

.wishlist-box{
  display: block;
  max-width: 15em;
  min-width: 15em;
}

.wishlist-box:hover{
  border: 1px solid #BBC863;
}

.wishlist-img-box{
  display: flex;
  flex-direction: row;
  max-height: 15em;
  min-height: 15em;
  min-width: 15em;
  border-bottom: 1px solid;
  overflow-y: hidden;
  overflow-x: auto;
}

.wishlist-img-box::-webkit-scrollbar{
  background: white;
  width: 5px;
  height: 5px;
}

.wishlist-img-box::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #93BD57;
  box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}


.wishlist-img{
  width: 15em;
}

.wishlist-title{
  display:flex;
  justify-content: space-between;
  border-bottom:1px dotted;
  padding: 3px;
  font-size: 14px;
}

.wishlist-description-box{
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 5em;
  min-height: 5em;
}

.wishlist-description-box p{
  margin-top:3px;
  font-size: 13.5px;
}

.wishlist-description-box ul{
  font-size: 13.5px;
}






