* {
  scroll-behavior: smooth;
}
.no-scroll {
  overflow: hidden;
  height: 100vh;
}
.categories-con {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  gap: 20px;
}
.categories-con .category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 70px;
  cursor: pointer;
}
.categories-con .category img {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.3);
}
.categories-con .category p {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.categ-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999 !important;
}
.categ-modal > div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: white;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.categ-close {
  display: flex;
  justify-content: start;
  margin-bottom: 10px;
}
.categ-close div {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.categ-modal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.categ-modal li {
  border-bottom: 1px solid #eee;
  padding: 8px 15px;
}
.categ-modal li:hover {
  background-color: rgb(221, 220, 220);
}
.categ-modal ul a {
  color: black;
}

.back-btn {
  display: flex;
  float: left;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  align-items: center;
  margin-top: -30px;
  margin-bottom: 30px;
  cursor: pointer;
}
.back-btn i {
  font-size: 16px;
}
/* .account-sect-title div {
  flex: 1;
  text-align: center;
} */
.account-pages {
  display: none;
}

@media (min-width: 768px) {
  .account-pages {
    display: block;
  }
}
@media (max-width: 991px) {
  .lg-hidden {
    display: none;
  }
}

@media (min-width: 992px) {
  .categ-sect {
    display: none;
  }
}
