.container , .list_container {
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(180deg, #ff7900 0%, rgba(255, 121, 0, 0) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 25px;
}

.list_container {
  background-image: linear-gradient(#fff, #fff),
  linear-gradient(180deg, var(--theme-color-green) 0%, rgba(255, 121, 0, 0) 100%);
  border-radius: 20px;
}


.category_list {
  box-shadow: 0px -15px 0px 0px #666666,
  0px 0px 5px 2px #DDDDDDA3;

    /* background: linear-gradient(90deg, #969696 0%, #666666 100%); */

}

.brand_logo > img {
  transform: rotateY(90deg);
  transition: transform .1s ease-in;
}

.brand_logo {
  transition: all .3s linear;
}


.brand_logo:hover > img {
  transform: rotateY(0);
}

.brand_logo:hover {
  border-color: var(--theme-color);
}


.mainContainer {
  max-width: 1358px;
  margin: 0 auto;
  min-height: calc(100vh - 114px);
}


.items::-webkit-scrollbar {
  width: 8px;
}

.items::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.items::-webkit-scrollbar-thumb {
  background-color: gray;
  border-radius: 20px;
}

.items::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.categorySkeleton {
  height: 184px;
}
.bannerSkeleton {
  height: 552px;
}

@media (max-width: 375px) {
  .bannerSkeleton {
    height: 266px;
  }
  .categorySkeleton {
    height: 152px;
  }
}

@media (min-width: 375px) and (max-width: 600px) {
  .bannerSkeleton {
    height: 266px;
  }
  .categorySkeleton {
    height: 152px;
  }
}
@media (min-width: 600px) and (max-width: 768px) {
}
@media (min-width: 768px) and (max-width: 992px) {
}
@media (min-width: 992px) and (max-width: 1200px) {
}



/* new version */
.title {
  margin: 0 1rem;
  font-size: 18px;
  font-weight: 500;
  height: 37px;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 540px) {
  .title {
      margin: 0 .5rem;
      font-size: 16px;
      height: 30px;
  }
}


.main_container {
  width: auto;
  display: grid;
  grid-template-columns: repeat(9 , 1fr);
  gap: 1rem;
  height: auto;
  margin: 1rem;
}
.sidebar_container {
  grid-column: 2 span;
}
.category_body {
  grid-column: 7 span;
}
