body {
  min-height: 100vh;
}

.h-100vh {
  height: calc(100vh);
}

@media screen and (min-width: 1000px) {
  .p-lg-4rem {
    padding: 4rem 4rem 4rem 0;
  }
}

.avatar {
  width: 38px;
  height: 38px;
  -o-object-fit: cover;
     object-fit: cover;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.edit-btn {
  background: none;
  border: none;
  color: white;
}

.border-none {
  border: none;
}

.product-item {
  width: 100%;
  padding-top: 100%;
  position: relative;
  border-radius: 5px;
  transition: 0.3s all linear;
}

.product-item:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.product-item .product-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  z-index: 11;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

.product-item .product-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 22;
}

