.item-img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.all-item-list {
  /* width: 1000px; */
  /* margin: 30px auto; */
  margin: auto;
  /* background-color: #ddd; */
  display: grid;
  width: 100%;
  /* grid-template-rows: repeat(2, minmax(150px, min-content)); */
  grid-template-columns: repeat(auto-fill, 100px);
  grid-template-columns: repeat(auto-fit, 100px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 150px;
}
.all-item-list .item {
  padding: 10px;
  color: white;
  font-size: 30px;
}

.all-item-list .item img{
  width: 100%;
  height: 100%;
  max-height: 100px;
  max-width: 150px;
  object-fit: cover;
  border-radius: 8px;
}


.modal{
    background-color: unset;
    margin: unset;
    width: 100%;
    max-width: unset;
    padding: unset;
    border-radius: unset;
    overflow: hidden;
    border: unset;
}

.modal-open{
  overflow:visible !important;
}

.close{
	text-shadow: none !important;
	color: #fff !important;
	opacity: 1 !important;
}

/* All pages */
.scrollbar-track.scrollbar-track-y.show{
  display: none !important;
}

/* .scrollbar-track.scrollbar-track-x.show{
  display: none !important;
} */

.breadcrumb{
  background: transparent;
}

.breadcrumb>li+li:before{
content: '\00a0';
}

/*End All pages */
