:root{
    --teal: #2ec1ac;
    --teal_hover: #278e8c;
}

*{
    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;
}
input[type=number] {
-moz-appearance: textfield;
} 
.custom-bg{
    background-color: var(--teal);
    border: 1px solid var(--teal);
}
.custom-bg:hover{
    background-color: var(--teal_hover);
    border-color: var(var(--teal_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;
}    
}