@import url(reset.css);
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* BROWSE CATEGORY */
.browse__category {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 42px;
  padding-left: 160px;
  padding-right: 160px;
  padding-bottom: 42px;
}

.browse__category p {
  font-size: 24px;
  font-weight: 600;
}

.category__bitov__split__system {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
}

.subclass__bitov__split__system {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  width: 180px;
  margin-top: 20px;
  padding: 10px;
  border-radius: 20px;
  transition: 0.5s ease-in-out;
}

.subclass__bitov__split__system:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.category__bitov__split__system img {
  width: 70px;
  height: 70px;
}

.category__bitov__split__system span {
  text-align: center;
  width: 150px;
  font-size: 16px;
  font-weight: 500;
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
