@import url('fonts/font.css');

* {
    border-radius: 0 !important;
}

body{
    background: #f4f5fb;
    font-family: 'Nunito', 'Tajawal', sans-serif;
}

a{
    text-decoration: none
}

@media (max-width: 768px) {
    #sidebar{
        position: fixed;
        z-index: 1031;
    }
}

.fs-7{
    font-size: 0.7rem
}

/*Content*/
#product-selector-list{
    overflow-y: auto;
    max-height: 65vh;
    display: none;
}
#product-selector-list {
    z-index: 999
}

.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;
}