﻿.highlight {
    background-color: cadetblue;
}

:root {
    --screen-width: 100vw;
    --screen-height: 100vh;
    --nav-text-color: #ffffff;
    --nav-width: 320px;
    --nav-count: 10;
}

a {
    color: white;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

.container {
    background-size: var(--container-bg-size) var(--container-bg-size);
    background-position: 0 0, calc(var(--container-bg-size) / 2) calc(var(--container-bg-size) / 2);
    width: var(--screen-width);
    height: var(--screen-height);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.btn-lbl {
    padding-top: 25px;
}

.btn-open {
    background-color: #328fff;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5), 0 0 0 rgba(0, 0, 0, 0.3) inset;
}

    .btn-open:active, .btn-open:focus {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3) inset;
        transform: translateY(7px);
    }

.nav-opener {
    display: none;
}

    .nav-opener:checked + .nav-menu {
        width: var(--screen-width);
        height: var(--screen-height);
        opacity: 1;
        transition: opacity 300ms ease-out;
    }

    .nav-opener:checked + body {
        overflow: hidden !important;
    }

.nav-menu {
    z-index: 1030;
    width: 0;
    height: 0;
    display: grid;
    grid-template-rows: max-content;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 300ms ease-out, width 0ms 300ms, height 0ms 300ms;
    overflow-x: hidden;
    overflow-y: auto;
}

.nav-header-menu {
    background-color: var(--main-bg-color);
    display: flex;
    justify-content: space-between;
    grid-column-start: span 2;
}

@media (max-width: 600px) {
    .nav-header-menu {
        background-color: var(--main-bg-color);
        display: flex;
        justify-content: space-between;
        grid-column-start: span 1;
    }
}

.nav-links {
    background-color: #484848;
    padding: 0;
    margin: 0;
    display: inline;
    grid-template-rows: repeat(var(--nav-count), var(--nav-height));
    grid-template-columns: 100%;
    overflow: auto;
    list-style-type: none;
}

    .nav-links li {
        padding: 4px !important;
    }

    .nav-links a {
        width: 100%;
        height: 100%;
        padding-left: 20px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

.nav-link {
    color: var(--nav-text-color);
    display: flex;
    align-items: center;
    user-select: none;
    transition: all 150ms ease-out;
}

    .nav-link label {
        width: 100%;
        height: 100%;
        padding-left: 20px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }


    .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.15);
    }

    .nav-link:focus, .nav-link:active {
        background-color: rgba(0, 0, 0, 0.30);
    }

.nav-images {
    background-color: white;
    display: flex;
    flex-flow: row wrap;
    flex-shrink: 0;
    flex-grow: 0;
    overflow: hidden;
    position: relative;
    width: 100%
}

.nav-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-color: #253B4D;*/
    background-color: #C31A1A;
    width: 100%;
    height: 95%;
    transition: all 400ms ease-out;
    overflow: auto
}

#image1:checked ~ .nav-images > .nav-image {
    transform: translateY(0);
}

#image1:checked ~ .nav-links > .nav-link:nth-child(3) {
    background-color: rgba(0, 0, 0, 0.5);
}

#image2:checked ~ .nav-images > .nav-image {
    transform: translateY(-100%);
}

#image2:checked ~ .nav-links > .nav-link:nth-child(4) {
    background-color: rgba(0, 0, 0, 0.5);
}

#image3:checked ~ .nav-images > .nav-image {
    transform: translateY(-200%);
}

#image3:checked ~ .nav-links > .nav-link:nth-child(5) {
    background-color: rgba(0, 0, 0, 0.5);
}

#image4:checked ~ .nav-images > .nav-image {
    transform: translateY(-300%);
}

#image4:checked ~ .nav-links > .nav-link:nth-child(6) {
    background-color: rgba(0, 0, 0, 0.5);
}

#image5:checked ~ .nav-images > .nav-image {
    transform: translateY(-400%);
}

#image5:checked ~ .nav-links > .nav-link:nth-child(7) {
    background-color: rgba(0, 0, 0, 0.5);
}

#image6:checked ~ .nav-images > .nav-image {
    transform: translateY(-500%);
}

#image6:checked ~ .nav-links > .nav-link:nth-child(8) {
    background-color: rgba(0, 0, 0, 0.5);
}

#image7:checked ~ .nav-images > .nav-image {
    transform: translateY(-600%);
}

#image7:checked ~ .nav-links > .nav-link:nth-child(9) {
    background-color: rgba(0, 0, 0, 0.5);
}

#image8:checked ~ .nav-images > .nav-image {
    transform: translateY(-700%);
}

#image8:checked ~ .nav-links > .nav-link:nth-child(10) {
    background-color: rgba(0, 0, 0, 0.5);
}

#image9:checked ~ .nav-images > .nav-image {
    transform: translateY(-800%);
}

#image9:checked ~ .nav-links > .nav-link:nth-child(11) {
    background-color: rgba(0, 0, 0, 0.5);
}

#image10:checked ~ .nav-images > .nav-image {
    transform: translateY(-900%);
}

#image10:checked ~ .nav-links > .nav-link:nth-child(12) {
    background-color: rgba(0, 0, 0, 0.5);
}

.nav-title {
    color: var(--nav-text-color);
    font-weight: bold;
    height: var(--nav-height);
    margin-left: 20px;
    display: flex;
    align-items: center;
    font-size: x-large;
}

.btn-nav {
    text-align: center;
    background-color: #ef2424;
    width: 56px;
    margin-top: 0;
    display: contents;
}

    .btn-nav:active, .btn-nav:focus {
        background-color: #ef2424;
        opacity: 0.8;
    }

    .btn-nav svg {
        display: block;
        vertical-align: top;
    }

        .btn-nav svg path {
            stroke: #ffffff;
            fill: #ffffff;
        }

.nav-link-opener {
    display: none;
}


.li-items1, .li-items2, .li-items3, .li-items4, .li-items5, .li-items6, .li-items7, .li-items8, .li-items9, .li-items10 {
    cursor: pointer;
    color: black;
}

.li-items-nodo {
    /*list-style-type: ' > ';*/
    list-style-image: url('../Content/Images/plus-8-32.ico');
    font-weight: bold;
}

.li-horizontal {
    float: left;
    /*list-style-type: ' > ';*/
    list-style-image: url('../Content/Images/plus-8-32.ico');
}

    .li-horizontal a {
        font-weight: initial;
        display: table-cell;
        vertical-align: middle;
        padding: 5px;
    }

/*.li-horizontal a:hover {
            background-color: #111111;
        }*/

li::marker {
    color: whitesmoke;
}

ul::marker {
    color: whitesmoke;
}

li.exe {
    list-style-image: url('../Content/Images/exe.png');
}

li.web {
    list-style-image: url('../Content/Images/web.png');
}

li.report {
    list-style-image: url('../Content/Images/report.png');
}

.search_input {
    width: 100%
}

.result_search {
    width: 100%;
    display: contents;
    height: fit-content;
}

.ulrow {
    margin: auto;
}

ul.list {
    vertical-align: middle;
}

.divcol {
    background: #a7251e; /* Fondo, debe ser más claro que el borde */
    border: 2px outset #C31A1A; /* Grosor del Borde */ /* Color del Borde */
    text-shadow: -1px -1px rgba(0,0,0,.2);
}

.nav-header-box-menu {
    background-color: var(--main-bg-color);
    display: flex;
    justify-content: center;
    color: white;
}

@media (max-width: 600px) {
    .nav-header-box-menu {
        background-color: var(--main-bg-color);
        display: flex;
        justify-content: center;
    }
}

.div-nav-header-left {
    float: left;
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.div-nav-header-right {
    float: right;
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.nav-box-menu {
    z-index: 1030;
    width: 0;
    height: 0;
    display: none;
    /*overflow: hidden;*/
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 300ms ease-out, width 0ms 300ms, height 0ms 300ms;
    background-color: white !important;
    overflow-y: initial !important
}

.nav-opener:checked + .nav-box-menu {
    width: var(--screen-width);
    height: var(--screen-height);
    opacity: 1;
    transition: opacity 300ms ease-out;
    display: block;
}

.nav-body-menu {
    background-color: white !important;
    padding: 10px
}

.cardFolder {
    /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
    box-shadow: 0 4px 8px 0 rgb(185,38,30,0.5);
    transition: 0.3s;
    width: 100%;
    border-radius: 5px;
    height: 100% !important;
    padding: 20px 10px 10px 10px;
    background-color: white;
}

    .cardFolder:hover {
        box-shadow: 0 8px 16px 0 rgb(185,38,30,0.5);
    }

    .cardFolder img {
        border-radius: 5px 5px 5px 5px;
        height: 50%;
        width: 75px;
        padding: 10px;
        position: absolute;
        left: 30px;
    }

    .cardFolder h4 {
        text-align: left;
        padding-left: 90px;
        text-overflow: ellipsis;
        overflow: hidden;
        margin: 0px;
    }

.cardProgram {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
    transition: 0.3s;
    width: 100%;
    border-radius: 5px;
    height: 100% !important;
    padding: 20px 10px 10px 10px;
    background-color: white;
    display: inline-block;
}

    .cardProgram:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
    }

    .cardProgram img {
        border-radius: 5px 5px 5px 5px;
        height: 90%;
        max-width: 100%;
        padding: 10px;
        display: inline-block;
        width: 40%;
        /*position: absolute;
        left: 30px;*/
    }

    .cardProgram small {
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .cardProgram h4 {
        /*text-align: left;*/
        /*padding-left: 90px;*/
        display: inline-block;
        text-overflow: ellipsis;
        overflow: hidden;
        margin: 0px;
        width: 60%;
        text-align: left;
    }

}

.containerbox {
    flex-direction: row;
    align-items: center;
}

.nav-body-menu a {
    cursor: pointer;
    color: gray;
    text-decoration: none;
    font-size: small;
}

.containercard {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
    height: 150px !important;
    text-align: -webkit-center;
}

.slide:hover,
.slide:focus {
    box-shadow: inset 6.5em 0 0 0 var(--hover);
}

.divTitle {
    text-align: center;
    font-weight: bold;
    color: black;
    font-size: x-large;
    opacity: 75%;
    margin-top: 15px;
}

.img-nav-header-menu {
    text-align: center;
    justify-items: center;
    width: 25px !important;
    height: 50px !important;
    margin-left: 12px;
    margin-right: 10px;
    cursor: pointer;
}

.search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
}

.input-search {
    height: 100%;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    padding-right: 40px;
    background-color: transparent;
}

    .input-search::placeholder {
        color: rgba(255,255,255,.5);
        font-size: 18px;
        letter-spacing: 2px;
        font-weight: 100;
    }

.btn-search {
    width: 50px;
    height: 100%;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: #ffffff;
    background-color: transparent;
    pointer-events: none;
}

    .btn-search:focus ~ .input-search {
        width: 100%;
        border-radius: 0px;
        background-color: transparent;
        border-bottom: 1px solid rgba(255,255,255,.5);
        transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
    }

    .btn-search:focus ~ .nav-title {
        width: 0px;
        opacity: 1;
    }

.input-search:focus {
    width: 100%;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,.5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}


    .input-search:focus ~ .nav-title {
        width: 0px;
    }


@media (max-width:700px) {
    .nav-title {
        display: none;
        width: 0px;
    }

    .div-nav-header-left {
        width: 120px;
    }


    element.style {
    }

    .search-box {
        width: 100%;
    }

    .input-search {
        width: 100%;
    }
}

.empr-menu {
    margin-left: 30px;
    text-align: center;
}


    .empr-menu:hover,
    .empr-menu:focus {
        cursor: pointer;
        text-decoration: underline;
    }

.ModulPrinc {
    font-size: x-large !important;
}
