﻿.alertas {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 10000;
}

    .alertas .alert {
        margin-bottom: 2px;
    }

.loader {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

    .loader.sm {
        border-width: 4px;
        width: 30px;
        height: 30px;
    }

    .loader.xs {
        border-width: 2px;
        width: 15px;
        height: 15px;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*a.btn, a.list-group-item, .list-group-item a, .navbar a {
    cursor: pointer;
}*/

a {
    cursor: pointer;
}

.navbar {
    margin-bottom: 2px;
}

#panelTomaAsistencia {
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: rgba(255,255,255,0.9);
}

    #panelTomaAsistencia .botonCerrar {
        position: fixed;
        right: 15px;
        top: 15px;
    }

.tabladatos {
    border-collapse: collapse;
    width: 100%;
}

    .tabladatos td, .tabladatos th {
        padding: 10px;
        border: none;
        border-bottom: solid thin #eeeeee;
    }

#areaFirma {
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.2);
    z-index: 10000;
}

#zonaParaFirmar {
    position: absolute;
    background-color: white;
    border: solid thin black;
}

#tituloFirma {
    position: absolute;
    background-color: #EEE;
    font-weight: bold;
    height: 30px;
    border: solid thin black;
    font-size: 16px;
}

#pieFirma {
    position: absolute;
    background-color: #EEE;
    height: 30px;
    border: solid thin black;
}

    #tituloFirma td, #pieFirma td {
        padding: 2px 10px 2px 10px;
    }

    #tituloFirma button, #pieFirma button {
        height: 24px;
    }
