html { 
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

/* Works on Firefox */
html.body-night-mode,
body.body-night-mode,
body.body-night-mode *
{
  scrollbar-width: thin !important;
  scrollbar-color: #666 transparent !important;
}
html.body-night-mode {
    scrollbar-color: #666 #202124 !important;
}

/* Works on Chrome, Edge, and Safari */
html.body-night-mode::-webkit-scrollbar,
body.body-night-mode::-webkit-scrollbar,
body.body-night-mode *::-webkit-scrollbar
{
  width: 10px;
}

html.body-night-mode::-webkit-scrollbar-track {
    background: #202124;
}
body.body-night-mode::-webkit-scrollbar-track,
body.body-night-mode *::-webkit-scrollbar-track
{
  background: transparent;
}


html.body-night-mode::-webkit-scrollbar-thumb
body.body-night-mode::-webkit-scrollbar-thumb,
body.body-night-mode *::-webkit-scrollbar-thumb
{
  background-color: #666;
  border-radius: 20px;
  border: 3px solid transparent;
}

html.body-night-mode::-webkit-scrollbar-thumb {
  border: 3px solid #202124;
}

/* Works on Firefox */
html,
body,
body *
{
  scrollbar-width: thin;
  scrollbar-color: #666 transparent;
}

/* Works on Chrome, Edge, and Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
body *::-webkit-scrollbar
{
  width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
body *::-webkit-scrollbar-track
{
  background: transparent;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
body *::-webkit-scrollbar-thumb
{
  background-color: #666;
  border-radius: 20px;
  border: 3px solid transparent;
}


body {
    min-height: 100%;
    padding: 0;
    margin: 0;
}

@font-face
{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    src: url("/fonts/Montserrat/Montserrat-Regular.ttf");
}

@font-face
{
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    src: url("/fonts/Montserrat/Montserrat-Medium.ttf");
}

@font-face
{
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    src: url("/fonts/Montserrat/Montserrat-Bold.ttf");
}

* {
    font-family: Montserrat, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

*:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

select:-moz-focusring 
{ 
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.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, Edge, Opera and Firefox */
}

.toastEventHref:hover {
    background-color: #EEF7FF !important;
}