:root {
  --bs-border-radius: 0px; /* default radius */
  --bs-border-radius-sm: 0px; /* small radius */
  --bs-border-radius-lg: 0px; /* large radius */
  --bs-border-radius-xl: 0px; /* extra large */
}
body {
  background: #f0f2f5;
  font-family: Arial, Helvetica, sans-serif;
}
/* Scrollbar width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Background */
::-webkit-scrollbar-track {
    background: #000;
}

/* Scroll handle */
::-webkit-scrollbar-thumb {
    background: #2b2b2b;
    border-radius: 0;
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}

/* Corner */
::-webkit-scrollbar-corner {
    background: #000;
}


.cursor-pointer {
  cursor: pointer;
}
.font-small {
  font-size: 10px;
}
.font-12 {
  font-size: 12px;
}
.z-1100 {
  z-index: 1100 !important;
}
.toast {
  margin: auto;
  margin-top: 5px;
  position: relative !important;
}
.img100 {
  width: 100px;
}
.img25 {
  width: 25px;
  height: 25px;
}
.img50 {
  width: 50px;
}

.w-150 {
  width: 150px;
}
.bg-black-gradient {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}
.info-purple {
  background: #debcf9;
  border-left: 5px solid #742db4;
  padding: 5px;
  font-size: 12px;
  color: #5f0a5f;
}
.text-justify {
  text-align: justify;
}
.info-secondary {
  background: #ffffff;
  border-left: 5px solid #aaaaaa;
  padding: 5px;
  font-size: 12px;
  color: #000000;
}
.bg-purple {
  background: rgba(90, 24, 154, var(--bs-bg-opacity)) !important;
  color: #fff;
  border: none;
  transition: 0.25s ease;
}

.btn-purple {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #9d4edd, #5a189a);
  color: #fff;
  border: none;
  transition: 0.25s ease;
}

/* Hover */
.btn-purple:hover {
  opacity: 0.9;
  color: #fff;
  box-shadow: 0 0 14px rgba(157, 78, 221, 0.7);
}

/* Active state */
.btn-purple.active {
  background: linear-gradient(-130deg, #f4ff00, #ff8d00);
  box-shadow: 0 0 20px rgb(255 148 0 / 90%);
  transform: scale(0.98);
  border-color: #f8ff1b !important;
  color: #000000 !important;
}
.btn-purple.active img {
  filter: invert(1);
}

/* Shine effect */
.btn-purple::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

/* Animate shine only when active */
.btn-purple.active::before {
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
#loginModal .loginModalIcon {
  height: 30px;
}
#loginModal .loginModalIcon img {
  width: 100px;
  position: absolute;
  top: -48px;
  border: 5px solid white;
}
.content-container {
  position: relative;
  top: 55px;
  padding-bottom: 55px;
}

.btn-shopee {
  background-color: #ee4d2d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.btn-shopee:hover {
  background-color: #d73211;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-shopee:active {
  transform: scale(0.98);
}
.file-img {
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-img img {
  width: 100%;
  min-height: 100px;
}
.filetype {
  text-shadow: 1px 1px black;
  font-size: 30px;
  font-weight: bold;
}
