:root {
  --side-menu-width: 15rem;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  /* font-family: 'Open Sans', sans-serif; */
  /* font-family: 'Poppins', sans-serif; */
  font-family: 'Rubik', sans-serif;
  /* font-family: 'Raleway', sans-serif; */
}

body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: overlay;
}

.side-bar {
  width: var(--side-menu-width);
}

.content {
  width: calc(100vw - var(--side-menu-width));
  margin-left: var(--side-menu-width);
}

.raleway {
  font-family: 'Raleway', sans-serif;
}

.rubik {
  font-family: 'Rubik', sans-serif;
}

.bungee {
  font-family: 'Bungee', cursive;
}

*::selection {
  background-color: #0099ff50;
  opacity: .15;
  color: white;
}

:root {
  --thumbScroll: #cbd5e0;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: var(--thumbScroll);
  border-radius: 25px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--thumbScroll);
}

::-webkit-scrollbar-thumb:active {
  background: var(--thumbScroll);
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0px;
}

::-webkit-scrollbar-track:hover {
  background: transparent;
}

::-webkit-scrollbar-track:active {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.sticky-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0.1rem !important;
}

.sticky-header::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}