﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
:root {
    /* --bg-nav-bar: #f7f6f6;*/
    --bg-nav-bar: #fff;
    --bg-nav-bar-tooltips: #fff;
    --bg-navbar-hover: #d6d5d5;
    --bg-navbar-input-search: #fafafa;
    --bg-navbar-profile: #e5e4e4;
    --bg-home-content: #FFF;
    --cr-navbar-text: #000;
    --cr-navbar-hover: #000;
    --cr-navbar-tooltips: #000;
    --cr-navbar-profile: #000;
    --cr-navbar-input-search: #fff;
    --cr-home-context: #000;
}
body {
    min-height: 100vh;
    width: 100%;
}

.headerNav{
    position:sticky;
    top:0;
    z-index:1020;
}
.container{
    width:100%;
    max-width:100%;
}

.center-items{
    justify-content:center;
}

.bd-layout {
    display: flex;
}

    .bd-layout .bd-sidebar {
        background: green;
        width: 268px;
        position: sticky;
        top: 68px;
        height: calc(100vh - 9rem);
    }


    .bd-layout .bd-main {
        margin-bottom: 3rem;
        display: grid;
        gap: inherit;
        grid-template-areas:
            "intro   toc"
            "content toc";
        grid-template-columns: 4fr 1fr;
        grid-template-rows: auto 1fr;
        width: 100%;
        gap: 2px;
    }

        .bd-layout .bd-main .bd-intro {
            grid-area: intro;
            background-color: bisque;
        }

        .bd-layout .bd-main .bd-toc {
            grid-area: toc;
            position: sticky;
            top: 5rem;
            right: 0;
            z-index: 2;
            height: calc(100vh - 9rem);
            overflow-y: auto;
            background-color: aquamarine;
        }

        .bd-layout .bd-main .bd-content {
            grid-area: content;
            min-width: 1px;
            background-color: blueviolet;
        }

/* ------------------------ bd-main_em */
    .bd-layout .bd-main_em {
        display: grid;
    gap: inherit;
    grid-template-areas:
        "intro toc"
        "content toc";
    grid-template-columns: 1fr; /* Cambiado a una sola columna */
    grid-template-rows: auto; /* Puedes ajustar las filas según sea necesario */
    width: 100%;
    gap: 2px;
    margin-bottom: 3rem !important;
    }

        .bd-layout .bd-main_em .bd-intro {
            grid-area: intro;
            background-color: bisque;
        }

        .bd-layout .bd-main_em .bd-toc {
            grid-area: toc;
            position: sticky;
            top: 5rem;
            right: 0;
            z-index: 2;
            height: calc(100vh - 1rem);
            overflow-y: auto;
            background-color: aquamarine;
        }

        .bd-layout .bd-main_em .bd-content {
            grid-area: content;
            min-width: 1px;
            background-color: blueviolet;
        }



.navbar_dos {
    height: 70px;
    background: #1b1b1b;
    background: var(--bg-nav-bar);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 50px 0px 100px;
    box-shadow: inset 0 -2px 0 0 rgba(0,0,0,0.16);
}

    .navbar_dos .menu-btn {
        color: #fff;
        font-size: 22px;
        cursor: pointer;
        display: none;
    }

    .navbar_dos .logo_content .logo {
        color: #fff;
        color: var(--cr-navbar-text);
        display: flex;
        height: 50px;
        width: 100%;
        align-items: center;
    }
        .navbar_dos .logo_content .logo img {
            height: 70px;
        }

    .navbar_dos .nav_list .search_content {
        display: flex;
        align-items: center;
        background: var(--bg-navbar-input-search);
        border-radius: 12px;
    }

        .navbar_dos .nav_list .search_content:hover i {
            color: var(--cr-navbar-hover);
            background: var(--bg-navbar-hover);
            border-radius: 12px;
        }


    .navbar_dos #btn {
        position: absolute;
        color: #fff;
        color: var(--cr-navbar-text);
        left: 90%;
        top: 6px;
        font-size: 20px;
        height: 50px;
        width: 100%;
        text-align: center;
        line-height: 50px;
        transform: translateX(-50%);
    }

    .navbar_dos ul {
        margin-top: 13px;
        display: flex;
    }

        .navbar_dos ul li {
            position: relative;
            height: 50px;
            width: 100%;
            margin: 0 5px;
            list-style: none;
            line-height: 50px;
        }

            .navbar_dos ul li .tooltip {
                position: absolute;
                left: 20px;
                top: 80px;
                transform: translateY(-50%);
                border-radius: 6px;
                height: 35px;
                width: 95px;
                background: #fff;
                background: var(--bg-nav-bar-tooltips);
                line-height: 35px;
                text-align: center;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
                transition: 0s;
                opacity: 0;
                pointer-events: none;
                color: #000;
                color: var(--cr-navbar-tooltips);
                z-index: 99;
                pointer-events: none;
            }

            .navbar_dos ul li:hover .tooltip {
                transition: all 0.5s ease;
                opacity: 1;
                top: 100%;
                color: var(--cr-navbar-hover);
                background: var(--bg-nav-bar-tooltips);
            }

            .navbar_dos ul li input {
                height: 100%;
                width: 127px;
                left: 0;
                top: 0;
                border-radius: 12px;
                outline: none;
                border: none;
                padding-left: 10px;
                font-size: 18px;
                color: #000;
                color: var(--cr-navbar-input);
                background: #fff;
                background: var(--bg-navbar-input-search);
            }

            .navbar_dos ul li .bx_search {
                position: absolute;
                z-index: 99;
                color: #fff;
                color: var(--cr-navbar-input);
                font-size: 22px;
            }

            .navbar_dos ul li a {
                color: #fff;
                color: var(--cr-navbar-text);
                display: flex;
                align-items: center;
                text-decoration: none;
                transition: all 0.4s ease;
                border-radius: 12px;
            }

                .navbar_dos ul li a:hover {
                    background: #fff;
                    background: var(--bg-navbar-hover);
                }

            .navbar_dos ul li i:hover {
                color: #11101d;
                color: var(--cr-navbar-hover);
            }

            .navbar_dos ul li i {
                height: 50px;
                min-width: 50px;
                border-radius: 12px;
                line-height: 50px;
                text-align: center;
                color: #fff;
                color: var(--cr-navbar-text);
            }


    .navbar_dos .profile_content {
        position: absolute;
        color: #fff;
        color: var(--cr-navbar-profile);
        bottom: 0;
        left: 0;
        width: 100%;
    }
    .navbar_dos .logo_content .logo .titulo_portal {
        font-size: 28px;
        padding-left: 70px;
    }

    .navbar_dos .nav_list .form-inline .btn-nav-top {
        padding: 0px;
    }

        .navbar_dos .nav_list .form-inline .btn-nav-top:hover {
            padding: 0px;
            background-color: var(--bg-navbar-hover);
        }


.link_name {
    display: none;
}

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
  font-family:"Roboto",sans-serif;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}
/*********************************************************************************************************************************/


.logo_content .logo i {
    font-size: 28px;
    margin-right: 5px;
}

.logo_content .logo .logo_name {
    font-size: 20px;
    font-weight: 400;
}


.profile_content .profile .profiel_detail {
    display: flex;
    align-items: center;
}

.profile .profiel_detail img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 12px;
}

.profile .profiel_detail .name_job {
    margin-left: 10px;
}

.profile .profiel_detail .name {
    font-size: 15px;
    font-weight: 400;
}

.profile .profiel_detail .job {
    font-size: 12px;
}

.profile #log_out {
    position: absolute;
    left: 88%;
    bottom: 5px;
    transform: translateX(-50%);
    min-width: 50px;
    line-height: 50px;
    font-size: 20px;
    border-radius: 12px;
}

.tab_login {
    background-color: #B4B3B3;
    color: black;
    border-radius: .2rem .2rem 0rem 0rem;
    cursor: pointer;
    padding: .6rem 3rem .6rem 1rem;
    justify-content: center;
}   
.tab_login.active
{
  background-color:#CECECE;
}

.tab_link {
    color: black; /* Cambia el color del texto del enlace */
    text-decoration: none; /* Quita el subrayado predeterminado */
}
.tab_link:hover
{
 color: black;
}

.tab_login_em {
    background-color: #cecece;
    color: black;
    border-radius: .2rem .2rem 0rem 0rem;
    cursor: pointer;
    padding: .6rem 3rem .6rem 1rem;
    justify-content: center;
}
