:root {
  --bs-primary: hsl(37, 90%, 51%);
  --bs-primary-dark: hsl(37, 90%, 41%);
  --bs-primary-lite: hsl(37, 90%, 61%);
}

html,
body {
  scroll-behavior: smooth;
}

body {
  overflow: hidden;
}

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

/* ! scroll-to-top */
.scroll-to-top svg {
  height: auto;
  fill: white;
}

.scroll-to-top.show {
  visibility: visible;
  opacity: 1;
}

.scroll-to-top {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--bs-secondary-color);
  font-size: 1.4rem;
  padding: 5px 10px;
  transition: all .3s ease-in-out;
}


/* ! sidebar e wrapper */
#content-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 250px);
  transition: all .3s ease-in-out;
}

#content-wrapper.showall {
  width: 100%;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 250px;
  background: var(--bs-dark);
  padding: 0 10px 50px;
  overflow-y: scroll;
  transition: all .3s ease-in-out, padding .3s ease-in-out;
}

@media (min-width: 1200px) {
  .sidebar {
    width: 250px;
  }
}

.sidebar.hide {
  transform: translateX(-100%)
}

.sidebar a,
.sidebar h1,
.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar h5,
.sidebar h6 {
  color: white;
}

footer a {
  color: white;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
}

/* ! navbar links */

.sidebar .nav-item {
  max-width: 100%;
}

.sidebar .nav-item .nav-link {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar .nav-link {
  color: #eeeeee;
  padding: 0 10px;
  min-height: 34px;
  line-height: 34px;
  text-decoration: none;
  margin-top: 4px;
  font-size: .9rem;
}

.sidebar .nav-link:is(:hover) {
  text-decoration: none;
  background-color: #4e5252;
  outline: 0;
  background: var(--bs-primary);
}

.sidebar .nav-item .nav-link:is(.active, :focus, :active) {
  background: var(--bs-primary);
  color: white !important;
}

.nav-item .nav-link .badge-counter {
  position: absolute;
  transform: scale(0.7);
  transform-origin: top right;
  margin-top: -0.25rem;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
  right: 0 !important;
}

/* ! content container fluid */
#content #page-top {
  height: calc(100vh - 110px);
  overflow-y: auto;
}




/* ! breadcrumbs */

.breadcrumb-item a {
  text-decoration: none;
  color: var(--bs-secondary-color);
}

.breadcrumb-item:is(.active) {
  color: var(--bs-primary);
}

.nav-item-heading {
  margin: 15px 0px 10px;
  padding: 10px 0px;
  color: gray !important;
  text-transform: uppercase;
  border-bottom: 1px solid gray;
  font-size: small;
}

/* ! card */

.card-header {
  background-color: #555555;
  border-bottom: 2px solid #2e3030;
  color: #ffffff;
}

.card-header-text {
  margin: 0;
}

.card-header .card-header-text span {
  font-size: 1rem;
  color: var(--bs-gray-500) !important;
}

/* ! buttons */

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary-dark);
  --bs-btn-active-border-color: var(--bs-primary-lite);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.card-header p {
  color: white !important;
}

#sidebar-notif {
  width: 650px;
  max-width: 100vw;
  position: fixed;
  top: 62px;
  height: calc(100vh - 62px);
}

/* ! celle tabulator*/
.tabulator-cell {
  text-transform: capitalize;
}
@media (min-width: 1200px) {
  #calendar{
    max-height: calc(100vh - 110px);
  }
}
.fc-event {
  cursor:pointer;
}
.fc-toolbar-title{
  text-transform: capitalize;
}