@font-face {
  font-family: 'Raleway';
  src: url(../font/Raleway-VariableFont_wght.ttf);
}

body {
  font-size: 12px;
  font-family: 'Raleway', sans-serif;
}

.form-control {
  font-size: 1em;
  font-family: 'Raleway', sans-serif;
}

.shadow {
  box-shadow: #dee2e6 0px 15px 15px -18px !important;
}

.btn {
  font-size: 1em;
  border: 1px solid #dee2e6;
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  border-color: rgba(0, 0, 0, 0.75);
}

.btn.btn-text {
  border-color: transparent;
}

.btn.btn-primary {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  border-color: rgba(0, 0, 0, 0.75);
}

.btn.btn-primary:hover {
  background-color: white;
  color: rgba(0, 0, 0, 0.75);
}

.main-wrapper {
  position: absolute;
  top: var(--bs-gutter-y);
  left: calc(var(--bs-gutter-x)/ 2 + 3em);
  right: calc(var(--bs-gutter-x)/ 2);
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-wrapper main {
  flex: 1;
  overflow: auto;
}

::-webkit-scrollbar {
  display: none;
}

.sidebar-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.sidebar-wrapper {
  flex: 1;
  position: relative;
}

.option {
  padding: 1em;
  margin: 0 auto .5em;
  -webkit-user-select: none;
  user-select: none;
  background-color: white;
  cursor: grab;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 15px 15px -18px;
  border-radius: 6px;
  border: 0;
  color: #212529;
  text-decoration: none;
  border: 1px solid #dee2e6;
  display: block;
}

.option.active {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  border-color: rgba(0, 0, 0, 0.75); 
}