@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* Page scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #7f7f7f;
    border-radius: 16px;
    border: 2px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
}


/* Filter scrollbar */
ul::-webkit-scrollbar {
    width: 24px;
}

ul::-webkit-scrollbar-track {
    background: #fff;
}

ul::-webkit-scrollbar-thumb {
    background-color: #7f7f7f;
    border-radius: 16px;
    border: 8px solid #fff;
}

ul::-webkit-scrollbar-thumb:hover {
    cursor: ns-resize;
}



/* General styling */

.font-mont {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

p {
    margin: 0!important;
}

.border {
    border-style: solid!important;
}

.sticky {
    position: sticky!important;
}

.text-white {
    color: #fff!important
}

.border-gray-200 {
    border-color: rgb(229 231 235)!important;
}

.static {
    position: static!important;
    transform: translate(0px)!important;
}

.ps-10 {
    padding-inline-start: 2.5rem!important;
}

.rounded-lg {
    border-radius: 0.5rem!important;
}