﻿#cargando {
    overflow: hidden;
    position: fixed;
    z-index: 2000;
    background: rgba(0,0,0,.3);
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    border-radius: 50%;
    display: inline-block;
    width: 64px;
    height: 64px;
}

    #cargando div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 51px;
        height: 51px;
        margin: 6px;
        border: 6px solid #fff;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #fff transparent transparent transparent;
    }

        #cargando div:nth-child(1) {
            animation-delay: -0.45s;
        }

        #cargando div:nth-child(2) {
            animation-delay: -0.3s;
        }

        #cargando div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* FAB Button */
.fab {
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    transition: 0.3s ease-out;
    color: white;
    text-align: center;
    vertical-align: middle;
    position: fixed;
    right: 23px;
    bottom: 23px;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
    .fab:hover {
        box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
    }


/* Clases para los Material Icons */
.mdi-14px.mdi-set, .mdi-14px.mdi:before {
    font-size: 14px;
}

.mdi-16px.mdi-set, .mdi-16px.mdi:before {
    font-size: 16px;
}

.mdi-64px.mdi-set, .mdi-64px.mdi:before {
    font-size: 64px;
}

.mdi-96px.mdi-set, .mdi-96px.mdi:before {
    font-size: 96px;
}

.mdi-128px.mdi-set, .mdi-128px.mdi:before {
    font-size: 128px;
}

#navbarResponsive a{
    cursor:pointer;
}

/* Clases para el índice de contenidos de las páginas públicas*/
#ulIndice li {
    list-style: none;
    font-weight: 400;
}
#ulIndice > li:first-child {
    
}
    #ulIndice li a {
        background-color: #f3f3f3;
        color: #666;
        font-size: 0.8rem;
        padding: 8px 5px 8px 10px;
        border-left: 5px #ddd solid;
        margin: 2px;
        margin-bottom: 3px;
        display: block;
    }    
    #ulIndice li a:hover {
        background-color: #eaeaea;
        text-decoration:none;
    }
    #ulIndice li span {
        background-color: #fcfcfc;
        font-weight:700;
        color: #666;
        font-size: 0.8rem;
        padding: 8px 5px 8px 10px;
        border-left: 5px #ccc solid;
        margin: 2px;
        margin-bottom: 3px;
        display: block;
    }

    #ulIndice li.activo {
        /*font-weight: 700;*/
    }
        #ulIndice li.activo > a {
            border-color: #8BC7F8;
            background-color: #bbdefb;
        }

#ulIndice > li:first-child {
    text-transform: uppercase;
}
#ulIndice ul li {
    text-transform:none;
}

#ulIndice ul {
    padding-left: 1.3em;
}
    #ulIndice ul ul ul {
        padding-left: 1.3em;
    }
        #ulIndice ul ul ul ul {
            padding-left: 1.3em;
        }
            #ulIndice ul ul ul ul ul {
                padding-left: 1.3em;
            }
                #ulIndice ul ul ul ul ul ul {
                    padding-left: 1.3em;
                }
                    ul#ulIndice ul ul ul ul ul ul ul {
                        padding-left: 1.3em;
                    }


.scrollToTop {
    background-color: #e3e3e3;
    position: fixed;
    bottom: 20px;
    right:20px;
    z-index: 1021;
    display: none;
}
@media (min-width: 992px) {
    .scrollToTop {
        right: 20%;
        /*right: 20px;*/
    }
}
