:root{
  --green:#33c12e;
  --green_hover:#358135;
}

* {
    font-family: "Poppins", sans-serif;
  }

  .h-font {
    font-family: "Merienda", cursive;
  }

  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .custom-bg{
    background-color:var(--green);
    border: 1px solid var(--green);
  }
  .custom-bg:hover{
    background-color:var(--green_hover);
    border-color: var(--green_hover);
  }
  .h-line
  {
    width: 150px;
    margin: 0 auto;
    height: 1.7px;
  }

.custom-alert
{
  position: fixed;
  top: 80px;
  right: 25px;
}
#dashboard-menu
{
  position: fixed;
  height: 100%;
  z-index: 11;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(36, 36, 36);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media screen and (max-width: 991px){
  #dashboard-menu{
    height: auto;
    width: 100%;
  }
  #main-content{
    margin-top: 60px;
  }
}