
.modal-product-container{
  display: flex;
  overflow-x: scroll;
  margin-bottom: 30px;
  padding-bottom: 15px;
  padding-top: 20px;
  position: relative;
  padding-top: 40px;
}
.container{
  position: relative;
}
.modal-product{
  position: relative;
  min-width: 140px;
  max-width: 140px;
  height: 200px;
  margin-right: 10px;
  background-color: white;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  border: 2px solid white;
  transition: .2s ease;
}
.modal-product.min{
  height: 145px;
}

.modal-product:hover{
  border: 2px solid #fe8911;
}

.modal-product img{
  width: 100%;
  height: 50px;
  border-radius: 8px;
  object-fit: contain;
}

.modal-product-name{
  display: flex;
  margin-top: 8px;
  font-size: 12px;
}

.modal-product-price{
  display: flex;
  margin-top: 3px;
  font-size: 13px;
}
.modal-product-price b{
  margin-right: 5px;
}

.categoryTitle{
  position: absolute;
  top: 8px;
  z-index: 4;
}
