

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1;
  font-size: 10px;
  scroll-behavior: smooth;
}
body{
  scroll-behavior: smooth;
  font-family: "Open Sans" ,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";

}




[v-cloak] {
  display: none !important;
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spin {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.overflow-x-clip{
  overflow-x: hidden;
  overflow-x: clip;
}

.relative{
  position: relative;
}

.loading::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:0;
  background-color: white;
  opacity: 0.9;
  z-index: 99;
}
.loading::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  width: 30px;
  height: 30px;
  border: 2px solid transparent;
  border-radius: 100%;
  border-left-color: var(--loading-color);
  border-right-color: var(--loading-color);
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.custom-scroll{}
.custom-scroll::-webkit-scrollbar{
  background-color: transparent;
}
.custom-scroll::-webkit-scrollbar-button{
  height: 0;
}
.custom-scroll::-webkit-scrollbar-thumb{
  cursor: pointer;
  background-color: #bbb;
  background-image: url('/images/new/svg/menu.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 80%;
  border-radius: 0.3vw;
}
.custom-scroll::-webkit-scrollbar-thumb:hover{
  background-color: #808080;
}

@media screen and (min-width: 1921px) {
  .custom-scroll::-webkit-scrollbar-thumb{
    border-radius: 6px;
  }
}

.video-icon {
  /* Position */
  left: 0;
  position: absolute;
  top: 0;

  /* Take full size */
  height: 100%;
  width: 100%;

  /* Center the content */
  align-items: center;
  display: flex;
  justify-content: center;

  /* Add a dark background */
  background-color: rgba(0, 0, 0, 0.25);
}
