﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 5px;
    margin-left: 5px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    /*    max-width: 280px;*/
}

.bg {
    background-image: url("../images/FondoLogin.jpeg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body header {
    font-family: 'Fuente Intitucional' !important;
    text-align: right;
    padding: 0px 30px;
    top: 0px;
    width: 100%;
    height: 190px;
    z-index: 5;
}

    body header h2, h3, h4, h5, h6 {
        padding-left: 10px !important;
    }

.footer {
    text-align: right;
    position: relative !important;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 80px;
    z-index: 5;
}

.footerRegistro {
    background: white;
    border: 0px solid white;
    background-repeat: no-repeat;
    /*background-size: contain;*/
    background-size: cover;
    text-align: right;
    position: relative !important;
    /*bottom: 0;*/
    width: 100%;
    height: 40px !important;
    padding-right: 10px;
    z-index: 5;    
}

.myDiv {
    position: relative;
    float: right;
    z-index: 5;
    height: 100%;
    width: 700px;
    -webkit-box-shadow: -15px 2px 45px -15px rgba(0,0,0,0.68);
    -moz-box-shadow: -15px 2px 45px -15px rgba(0,0,0,0.68);
    box-shadow: -15px 2px 45px -15px rgba(0,0,0,0.68);
}

    .myDiv::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #4c63a9 center center; /*#3ab3c8 center center;*/
        opacity: .6;
    }

@media (max-width: 700px) {
    .myDiv {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .boton {
        margin-top: -15px !important;
        margin-left: 0px !important;
        height: 50px !important
    }
}

.FormLogin {
    background-color: white;
    margin-top: 0px;
    position: absolute;
    width: 100%;
    height: 580px; /*540px;*/
    top: 0px;
    padding-top: 25px;
}

#loginForm {
    height: 330px!important; /*245px !important;*/
}

.myDiv #formulario {
    position: relative;
    background: white;
}

.login-container {
    margin: 30px 5px 5px 5px;
    font-family: 'Fuente Intitucional' !important;
}

.center-div {
    margin: auto;
    float: none;
}

#headerwrap {
    /*background-color: #e5e9ec;*/
    text-align: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.jumbotron {
    -webkit-box-shadow: 0px 15px 30px -23px rgba(0,0,0,0.68);
    -moz-box-shadow: 0px 15px 30px -23px rgba(0,0,0,0.68);
    box-shadow: 0px 15px 30px -23px rgba(0,0,0,0.68);
}

.modal-header {
    background-color: #3ab3c8 !important;
    color: white !important;
}

table.dataTable {
    background: white;
    border-collapse: collapse !important;    
}

    table.dataTable thead tr {
        background-color: #3ab3c8 !important;
        color: white;
    }

        table.dataTable thead tr th {
            border: 0px !important;
        }

    table.dataTable tbody tr td {
        border: 0px !important;
    }

    table.dataTable tbody .Estado {
        background: red !important;
        margin: 10px;
        font-weight: bold;
    }

    table.dataTable tbody tr {
        /*        background-color: #B9DCFF;*/
        transition: background-color .4s;
        -moz-transition: background-color .4s;
        -ms-transition: background-color .4s;
        -o-transition: background-color .4s;
        -webkit-transition: background-color .4s;
    }

        table.dataTable tbody tr:hover {
            background-color: #B9DCFF;
            -webkit-border-radius: 0px 7px 7px 0px;
            -webkit-box-shadow: 0px 10px 14px -9px rgba(0,0,0,0.23);
            -moz-box-shadow: 0px 10px 14px -9px rgba(0,0,0,0.23);
            box-shadow: 0px 10px 14px -9px rgba(0,0,0,0.23);
        }

.ventana {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    z-index: 1050;
    top: 160px;
}

.form {
    width: 100%;
    height: 385px;
    z-index: 5;
    text-align: left;
    padding: 60px 20px 0px 20px;
    margin-top: -30px;
    font-size: 24px;    
    background:white;
    opacity:0.9;
    color: #666;
    position: absolute;
    padding-left: 60px;
}

.preloader {
    width: 70px;
    height: 70px;
    border: 10px solid #eee;
    border-top: 10px solid #666;
    border-radius: 50%;
    animation-name: girar;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    margin-left: 15px;
    margin-right: 15px;
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}