@import url('fonts/font.css');

body{
    background: #f4f5fb;
    font-family: 'Nunito', 'Tajawal', sans-serif;
}

a{
    text-decoration: none
}

#sidebar{
    width: 200px;
}

@media (max-width: 768px) {
    #sidebar{
        position: fixed;
        z-index: 1032;
    }
}

.fs-7{
    font-size: 0.7rem
}

/*Content*/
.scalable-btn .scalable-btn-text {
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    transition: max-width 0.3s ease;
    display: inline-block;
}

.scalable-btn:hover .scalable-btn-text {
    max-width: 200px;
}


.dropdown-hover:hover .dropdown-menu {
    display: block;
}
/*Framework*/
.boxed-image{
    aspect-ratio: 1/1;
    object-fit: cover;
}
.pointer{
    cursor: pointer;
}
.last-child:last-child{
    display: none
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}