
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.m-bold {
	font-weight: 800;
}

.rounded {
	border-radius: 25px;
}

.qty {
  font-size: 2em!important;
  text-align: center;
}

#topvideo {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

.bg {
  background: #E65100;
  background: linear-gradient(145deg, rgba(230, 81, 0, 1) 0%, rgba(33, 33, 33, 1) 60%);
}

* {scrollbar-width: thin;scrollbar-color:  #E65100 #212121;}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {width: 8px;}
*::-webkit-scrollbar-track {background: #E65100;}
*::-webkit-scrollbar-thumb {background-color: #E65100;border-radius: 8px;border: 1px solid #212121;}

.scrollme {
  overflow: hidden;
}

.shadow-light {
  display: grid;
  place-items: center;
}

.shadow-light::before,
.shadow-light::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  background: linear-gradient(45deg,#f57c00,#fb8c00,#ff9800,#ffa726,#388e3c,#43a047,#4caf50,#66bb6a, #212121);
  background-size: 400%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
  animation: animate 25s linear infinite;
  border-radius: 25px;
}

.shadow-light::after {
  filter: blur(25px);
}

@keyframes animate {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}