* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-block-start: 0;
  margin-block-end: 0;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fefefe;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #646464;
  border-radius: 4px;
  border-right: 2px white solid;
  /* background-clip: padding-box; */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #848484;
}

body {
  background-color: #fefefe;
  scroll-behavior: smooth;
  background-image: url("/media/image?s=s&q=70&r=w1.6&path=media/images/home/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  box-shadow: 0px 0px 10px 1px rgba(119, 119, 119, 0.6666666667);
}

.body_items {
  background-color: #efefef;
}

.category_container {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.category_heading {
  padding: 12px 4px;
  background-color: #fff;
  padding-top: 30px;
}
.category_heading h1 {
  color: #627a45;
  font-weight: bolder;
  font-size: 1.9rem;
  border-bottom: 1px solid #eee;
}
.category_heading h3 {
  color: rgba(26, 26, 98, 0.893);
  font-weight: bold;
  padding: 15px 10px;
  padding-right: 4px;
  padding-bottom: 3px;
}
.category_heading .h3animate {
  transform: scale(1);
  animation-name: grow;
  animation-duration: 1500ms;
  animation-iteration-count: 20;
  animation-direction: alternate;
  animation-fill-mode: both;
}

@keyframes grow {
  0% {
    transform: scale(0.995);
    color: rgba(127, 69, 6, 0.95);
  }
  100% {
    transform: scale(1.008);
    color: rgba(4, 115, 7, 0.893);
  }
}
/* Loading spinner styles */
.loading-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  z-index: 1000;
}

/* Spin animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 1441px) {
  body {
    width: 1440px;
    margin-left: calc((100% - 1440px) / 2);
  }
}/*# sourceMappingURL=style.css.map */