/*@mixin centrar(){

}*/
* {
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-size: 1em;
}

/************        Header     ************/
header img {
    max-width: 200px;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url(./img/menu.svg);
}

.color_menu {
    background-color: rgb(199, 212, 226);
}

/************        Menu     ************/
.contenedor_menu .navbar-toggler-icon {
    background-image: url(../img/menu.svg);
}

.navbar-nav{
    justify-content:space-between;
}

.nav-item {
    text-align: center;
    font-size: 1.25rem;
}

    .nav-item:hover {
        background-color: rgb(58, 141, 222);
        border-radius: 10px;
        transform: scale(1.05);
        transition: transform 0.2s;
        border-bottom: 2px solid rgb(16, 24, 31);
    }

.nav-link {
    height: 100%;
    color: black;
}

    .nav-link:hover {
        color: white;
        transition: transform 0.2s;
    }

.dropdown {
    margin: 0 20px;
}

    .dropdown .dropdown-menu {
        display: block;
        margin-top: 0.02em;
    }

    .dropdown:hover {
        background-color: rgb(58, 141, 222);
        border-radius: 8px;
        transition: transform 0.2s;
    }

#btn_salir {
    background-color: red;
    color: white;
    border-radius: 10px;
    width: 100%;
    margin: auto;
}

    #btn_salir:hover {
        background-color: #DE8B3A;
        transition: transform 0.1s;
        color: black;
    }

#text_name {
    display: flex;
    width: auto;
    text-align: center;
    font-size: 1.25rem;
    align-items: center;
    padding: 0% 15px;
}

@media screen and (max-width: 480px) {
    #text_name {
        width: 100%;
        text-align: center;
    }
}

#text_name p {
    color: black;
    margin: auto;
    font-weight: bold;
    text-decoration: underline;
}

/************        Titulos     ************/
.titulo-principal {
    font-size: 4rem;
    color: rgb(58, 141, 222);
    padding: 10px 0;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    padding-bottom: 30px;
}

/************        Botones     ************/
.btn {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    background-color: #3a8dde;
    border-color: #3a8dde;
    cursor: pointer;
    margin: 0px 15px;
    padding: 10px 25px;
    width: auto;
    margin: auto;
}

    .btn:hover {
        background-color: #12a14b;
        border-color: #10181F;
        color: white;
    }

@media screen and (max-width: 480px) {
    .btn {
        width: 100%;
    }
}

.btn-registro:hover {
    background-color: #C5CAE9;
    border-color: #10181F;
    color: rgb(0, 0, 0);
    font-weight: bold;
}

.btn_svg {
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    border: none;
    color: #3a8dde;
    background: transparent;
    transition: 0.2s;
}

    .btn_svg:hover, .btn_svg:focus {
        color: white;
        background: #3a8dde;
        border-color: #3a8dde;
    }

    .btn_svg .svg-icon {
        position: relative;
        flex-shrink: 0;
        height: 2rem;
        width: 2rem;
        fill: currentColor;
        transition: fill 0.3s;
    }

.btn_accion:hover, .btn_accion:focus {
    background: #12a14b;
}

.btn_historial:hover, .btn_historial:focus {
    background: #3a8dde;
    border-color: #3a8dde;
}

.btn_salir:hover, .btn_salir:focus {
    background: #DE3A3B;
    border-color: #3a8dde;
}

.link_btn {
    text-decoration: none;
    margin: 0px 1%;
}

.btn_forumlario {
    display: block;
    margin: 3% auto;
}

.btn_consultar {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 38px;
    width: 240px;
}

    .btn_consultar:hover {
        background-color: #C5CAE9;
        border-color: #10181F;
        color: rgb(0, 0, 0);
    }

.barra_botones {
    padding: 10px 0px;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .barra_botones {
        display: none;
    }
}

.btn_home {
    color: black;
}

    .btn_home:hover {
        border-radius: 15px;
        background-color: #DEDD3A;
        transform: scale(1.1);
    }

.icon_home {
    height: 3rem;
    width: 3rem;
}

.msg {
    margin: 0px 3rem;
    padding: 1rem;
    display: flex;
    border-radius: 15px;
    align-items: center;
    justify-content: space-between;
    animation: hithere 1s forwards;
}

@keyframes hithere {
    30% {
        transform: scale(1.05);
    }

    40%, 60% {
        transform: rotate(-3deg) scale(1.05);
    }

    50% {
        transform: rotate(3deg) scale(1.05);
    }

    70% {
        transform: rotate(0deg) scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.msg_error {
    background-color: rgba(255, 0, 0, 0.4);
    color: darkred;
    font-weight: bold;
}

    .msg_error button {
        color: darkred;
    }

.msg_alerta {
    background-color: rgba(255, 234, 0, 0.4);
    color: rgb(190, 136, 0);
    font-weight: bold;
}

    .msg_alerta button {
        color: rgb(190, 136, 0);
    }

.msg_exito {
    background-color: rgba(0, 255, 68, 0.4);
    color: darkgreen;
    font-weight: bold;
    animation: none;
}

    .msg_exito button {
        color: darkgreen;
    }

.close-btn {
    cursor: pointer;
    background: none;
    border: none;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 0;
    margin-left: 10px;
}

@media screen and (max-width: 480px) {
    .msg {
        margin: 5px;
        padding: 1rem;
    }
}
/************        Body     ************/
body {
    position: relative;
    padding-bottom: 3em;
    min-height: 100vh;
}

/************        Footer     ************/
footer {
    position: absolute;
    background-color: rgb(199, 212, 226);
    text-align: center;
    bottom: 0;
    width: 100%;
    padding: 1em;
}

/************        Login     ************/
.contenedor-login {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 400px;
    padding: 40px;
    transform: translate(-50%, -40%);
    background: rgb(199, 212, 226);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

    .contenedor-login h2 {
        margin: 0 0 30px;
        color: black;
        text-align: center;
        font-size: 2em;
    }

@media screen and (max-width: 480px) {
    .contenedor-login {
        width: 95%;
        transform: translate(-50%, 0);
        top: 20%;
    }
}

.form-group {
    margin: 0 0 10px 0;
    position: relative;
    float: left;
    width: 100%;
}

    .form-group label {
        display: block;
        font-size: 1.3rem;
        width: 100%;
        min-height: 40px;
        box-sizing: border-box;
        font-weight: bold;
    }

    .form-group input {
        display: block;
        font-size: 1.3rem;
        width: 100%;
        padding: 0px 10px;
        min-height: 40px;
        margin: 0px 0px 15px 0px;
        box-sizing: border-box;
        background: #ffffff;
        border: 1px solid #e1e1e1;
        border-radius: 6px;
        -moz-border-radius: 6px;
        -webkit-border-radius: 6px;
    }

/************        Formularios     ************/
.contenedor_formulario {
    border-radius: 10px;
    background-color: rgba(169, 168, 169, 0.205);
    width: 60%;
    height: auto;
    margin: auto;
    border: 1px solid rgba(58, 140, 222, 0.466);
    padding-bottom: 5%;
}

    .contenedor_formulario .titulo_formulario {
        border-radius: 10px 10px 0 0;
        background-color: rgba(58, 140, 222, 0.466);
        border: 1px solid rgba(58, 140, 222, 0.466);
        text-align: center;
        font-size: 1.5rem;
        font-weight: 520;
    }

    .contenedor_formulario label {
        margin: 1% 0 0 5%;
        font-size: 1.3rem;
    }

    .contenedor_formulario .grupo_dato {
        margin: 0% 10%;
    }

    .contenedor_formulario .grupo_etiqueta {
        vertical-align: middle;
    }

        .contenedor_formulario .grupo_etiqueta input, .contenedor_formulario .grupo_etiqueta select {
            width: 90%;
            height: 5vh;
            font-size: 1.2rem;
            background-color: white;
        }

        .contenedor_formulario .grupo_etiqueta span {
            width: 6%;
            height: 5vh;
            vertical-align: sub;
            text-align: center;
            margin-left: 1%;
            background-color: transparent;
        }

@media screen and (max-width: 480px) {
    .contenedor_formulario {
        width: 98%;
    }

        .contenedor_formulario input, .contenedor_formulario select {
            width: 85% !important;
        }

        .contenedor_formulario span {
            margin-right: 5px;
        }
}

/************        Consultar     ************/
.seccion-consultar {
    /*background-color:red;*/
    margin: auto;
    padding: 0 0 10px 0;
    text-align: center;
}

    .seccion-consultar label {
        font-weight: bold;
        font-size: 1.5rem;
    }

    .seccion-consultar input:not([type=submit]) {
        width: 360px;
        background: #fff;
        color: #a3a3a3;
        box-shadow: 1px 6px 10px 1px rgba(0, 0, 0, 0.2);
        outline: 0;
        padding: 22px 18px;
        display: block;
        margin: 20px auto;
        text-align: center;
    }

        .seccion-consultar input:not([type=submit]):focus {
            box-shadow: 1px 6px 5px 1px rgba(245, 4, 4, 0.954);
        }

.titulo_muestra {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 520;
    width: 100%;
}

.card_p {
    margin: auto;
    display: grid;
    place-items: center;
    width: 60%;
    min-width: 300px;
    height: auto;
    border-radius: 20px;
    background: #f5f5f5;
    padding: 1.8rem;
    border: 2px solid #c3c6ce;
    overflow: visible;
}

@media screen and (max-width: 400px) {
    .card_p {
        width: 98%;
    }
}

.tabla_info_muestra {
    width: 100%;
    max-width: 100%;
}

    .tabla_info_muestra th, .tabla_info_muestra td {
        border-bottom: 1px inset #bfbfbf;
        padding: 5px 10px;
        position: relative;
        vertical-align: middle;
        text-align: center;
    }

    .tabla_info_muestra thead tr {
        border-bottom: 3px solid rgb(169, 168, 169);
        color: #000;
    }

    .tabla_info_muestra thead th {
        color: #000;
        line-height: 1.8;
        padding: 15px 14px 13px 14px;
        position: relative;
        text-align: center;
        font-size: 1.2rem;
    }

    .tabla_info_muestra tbody th {
        text-align: left;
    }

/************        Tablas     ************/
.tabla_inicio {
    border-collapse: collapse;
    border-spacing: 0;
    box-shadow: 0px 7px 6px -6px rgba(0, 0, 0, 0.28);
    margin-bottom: 40px;
    margin-top: 0.5em;
    width: 100%;
    max-width: 100%;
}

    .tabla_inicio th, .tabla_inicio td {
        border: 1px dotted #bfbfbf;
        padding: 10px 14px;
        position: relative;
        vertical-align: middle;
        text-align: center;
    }

    .tabla_inicio thead tr {
        border-bottom: 3px solid #0085a6;
        color: #000;
    }

    .tabla_inicio thead th {
        background-color: #fff;
        color: #000;
        font-size: 0.83333em;
        line-height: 1.8;
        padding: 15px 14px 13px 14px;
        position: relative;
        text-align: center;
        text-transform: uppercase;
    }

    .tabla_inicio tbody tr {
        background-color: #fff;
    }

        .tabla_inicio tbody tr:hover {
            background-color: #eee;
            color: #000;
        }

    .tabla_inicio tfoot tr {
        border-top: 3px solid #0085a6;
    }

@media screen and (max-width: 400px) {
    .tabla_inicio {
        box-shadow: none;
    }

        .tabla_inicio thead tr, .tabla_inicio tfoot tr {
            display: none;
        }

        .tabla_inicio tbody tr {
            box-shadow: 0px 7px 6px -6px rgba(0, 0, 0, 0.28);
            margin-bottom: 20px;
        }

            .tabla_inicio tbody tr:last-child {
                margin-bottom: 0;
            }

        .tabla_inicio tr {
            display: block;
        }

        .tabla_inicio td {
            display: block;
            background-color: #fff;
            border-top: none;
            position: relative;
            padding: 0% 5%;
            text-align: center;
        }

            .tabla_inicio td:hover {
                background-color: #eee;
                color: #000;
            }

            .tabla_inicio td:first-child {
                border-top: 1px solid #bfbfbf;
                border-bottom: 3px solid #0085a6;
                border-radius: 4px 4px 0 0;
                color: #000;
                font-size: 1.11111em;
                font-weight: bold;
            }

            .tabla_inicio td::before {
                display: inline-block;
                color: hsl(0, 0%, 60%);
                font-size: 14px;
                font-weight: normal;
                margin-left: -100%;
                text-transform: uppercase;
                width: 100%;
                white-space: nowrap;
            }

        .tabla_inicio .btn_cell {
            width: 100% !important;
            text-align: center;
            margin: auto;
        }
}

.tabla_inicio .btn_cell {
    width: 15%;
    text-align: center;
    margin: auto;
}
/*# sourceMappingURL=estilo.css.map */
