@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins: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&family=Space+Grotesk:wght@300..700&display=swap');


:root {
  color-scheme: light;
}


* {
    margin : 0;
    padding : 0;
    border: 0;
    box-sizing: border-box;
    outline: none;
}
*::-webkit-scrollbar{
    width: 0px;
    height: 0px;
}
*::-webkit-scrollbar-thumb{
    /* background-color: transparent; */
    background-color: #818181;
    border-radius: 5px;
}
*.thumbShow::-webkit-scrollbar-thumb{
    background-color: #383838 !important;
}


html {
    scroll-behavior: smooth;
}

body{
    width : 100%;
    /*  width : 100vw; */
    /*  height : 100vh; */
    overflow-x: hidden;
}


::backdrop {
  z-index:0;

  background-color: #383838;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

.invisible{
    display: none !important;
    visibility: hidden !important;
}
