@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap");

:root {
    --header-height: 3.5rem;
    --nav-width: 7rem;
    --primary-color: #374df1;
    --secondary-color: #242424;
    --secondary-color-light: #5c5c5c;
    --first-color: black;
    --first-color-light: black;
    --menu-text-color: #f7f6fb;
    --white-color: #f7f6fb;
    --body-font: "Poppins", sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 1000;
    --black-color: #242424;
}
*,
::before,
::after {
    box-sizing: border-box;
}
body {
    position: relative;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: 0.5s;
    font-weight: 400;
    font-style: normal;
    background-color: #f2f4f7 !important;
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}
.height-100 {
    height: calc(100vh - var(--header-height) - 3rem) !important;
}
.content {
    padding-top: 1rem;
}
.content-wrapper {
    max-width: 86.25rem;
    margin: 0 auto;
    padding: 0;
}

.text-label {
    font-size: .75rem;
    line-height: 120%;
    font-weight: 750 !important;
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.list-group-item {
    background-color: transparent;
    border: 0;
}

.list-group-item.active {
    border: 0;
    color: var(--primary-color);
    background-color: transparent;
    font-weight: 650;
}

.list-group-item:hover {
    background-color: rgba(61,37,20,.05);
}

.list-group-item.active:hover {
    background-color: transparent;
}

.breadcrumb-item {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb-item:hover {
    text-decoration: underline;
}

#page-title {
    font-size: 3.125rem;
    max-width: 18ch;
    margin-bottom: 2rem;
    font-weight: 700;
}

.navbar {
    position: sticky;
    top: 0;
    border-radius: 1rem;
    margin-top: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: block;
}

.scrollable-content {
    max-height: calc(100vh - 9rem);
    overflow-y: auto;
    padding-right: 0.5rem;
}

.scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.scrollable-content.slim::-webkit-scrollbar {
    width: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3); /* Oscurece el scroll al pasar el mouse */
}

.separator {
    color: rgba(61,37,20,.5);
}

.nav-link {
    font-size: 18px;
}

.nav-link.active {
    font-weight: 600;
}

.nav-link:hover {
    color: rgb(87, 87, 87);
}

.icon {
    width: 1rem;
    height: 1rem;
}

.search-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: -0.25rem;
}

.mobile-nav {
    display: none;
}

.dropdown-menu {
    transition: 0.3s;
    min-width: none;
    border: 0;
    min-width: 84vw;
    max-height: 90vh;
    width: calc(100vw - 1.5rem);
    max-width: 20rem;
    height: calc(100dvh - 10rem);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-search {
    border-radius: 0.375rem;
    border: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.card-search:hover {
    background-color: rgba(61,37,20,.05);
}

@media (min-width: 992px) {
    .fixed-col-lg-2 {
        min-width: 16.25rem;
        max-width: 16.25rem;
    }

    .fixed-col-lg-8 {
        max-width: 66rem;
    }
}

@media (max-width: 992px) {
    .mobile-nav {
        display: block;
    }

    .no-mobile-show {
        display: none;
    }

    .navbar {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .no-margin {
        margin-top: 0 !important;
    }

    .search-button {
        display: none;
    }
}
