body {
    background: #E5E5E5;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100%;
    margin: auto;
}

#panel_administrativo {
    margin-bottom: 30px;
}

.pie-de-pagina {
    padding-top: 10px;
    color: #fff;
    left: 0px;
    font-size: 12px;
    right: 0px;
    background-color: #00733f;
    margin-bottom: 0px;
    margin-top: 30px;
    text-align: center;
    font-weight: bold;
    overflow-y: scroll;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
}


/*-----------------------------PANEL LOGIN-------------------------------*/

.login-page {
    width: 40vw;
    padding: 30px 0 0;
    margin: auto;
}

.form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    margin: 0 auto 30px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.form input {
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}

.form button {
    text-transform: uppercase;
    outline: 0;
    background: #00733f;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form button:hover,
.form button:active,
.form button:focus {
    background: #df9818;
}

.form .message {
    margin: 15px 0 0;
    color: #707070;
    font-size: 12px;
}

.form .message b {
    margin: 15px 0 0;
    color: #00733f;
    font-size: 12px;
    font-weight: bold;
}

.form .message a {
    color: #00733f;
    text-decoration: none;
    transition: ease-out 0.5s;
}

.form .message a:hover {
    color: #df9818;
}

.form .register-form {
    display: none;
}

.form .message2 {
    margin: 15px 0 0;
    color: #a0a0a0;
    font-size: 12px;
}

.form .message2 a {
    color: #00733f;
    text-decoration: none;
    transition: ease-out 0.5s;
}

.form .message2 a:hover {
    color: #df9818;
}


/* Select style */

.select-style {
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: none;
    margin: 0 0 15px;
    padding: 15px !important;
    box-sizing: border-box;
    font-size: 14px;
}

.select-style select {
    padding: 5px 8px;
    width: 130%;
    border: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-style select:focus {
    outline: none;
}


/*--------------------------TERMINA PANEL LOGIN----------------------*/


/*------------------------------MENU PANEL----------------------------*/

.cabecera {
    padding-top: 20px;
    width: 100%;
    height: 80px;
    background: #00733f;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.titulo {
    color: #FFFFFF;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 15px;
}

.menu-nav ul {
    list-style: none;
    width: auto;
}

.menu-nav li {
    float: left;
    position: relative;
    width: auto;
    color: red;
}

.menu-nav a {
    font-size: 13px;
    color: #FFFFFF;
    display: block;
    padding: 14.5px 50px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

.menu-nav li:hover a {
    background: #df9818;
}

#boton-salir {
    float: right;
}


/*---------------------TERMINA MENU PANEL ALUMNO/ADM-------------------*/


/*--------------------------TABLAS DE DATOS---------------------------*/

#panel_alumno {
    padding-bottom: 30px;
}

#panel_body {
    position: relative;
    min-height: 100vh;
}

.tabla-datos {
    background: white;
    margin: auto;
    margin-bottom: 10px;
    width: 100%;
    animation: float 5s infinite;
    border-collapse: collapse;
    outline: none;
    border: none;
}

th {
    color: #FFFFFF;
    background: #df9818;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

tr {
    text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}

tr:hover td {
    background: rgb(235, 235, 235);
    color: #000;
}

td {
    background: #FFFFFF;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: middle;
    font-size: 12px;
    text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
    text-align: center;
}


/*-------------------------TERMINA TABLAS DE DATOS----------------------*/


/*-------------------------FORMATO SOLICITUD---------------------------*/

.solicitud_container {
    overflow-y: scroll;
}

.titulo_solicitud {
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.formulario {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    background-color: transparent;
}

.campo-formulario {
    width: 100%;
    padding: 12px 20px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#etiq-fecha {
    float: left;
    font-size: 15px;
    color: #000;
    padding: 15px 0px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    text-align: center;
}

#selector-fecha {
    float: right;
    width: 85%;
    padding: 12px 20px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#registrar-sol {
    float: left;
    background-color: #00733f;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

button,
p {
    font-size: 15px;
}

#registrar-sol:hover {
    transition: 0.5s cubic-bezier(0.39, 0.58, 0.57, 1);
    ;
    background-color: hsl(130, 36%, 20%);
}

#borrar-fila {
    width: 10%;
    float: right;
    background-color: #000;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
}

#borrar-fila:hover {
    transition: 0.5s cubic-bezier(0.39, 0.58, 0.57, 1);
    ;
    background-color: #9EA7AF;
}

#anadir-fila {
    font-weight: bold;
    width: 10%;
    float: right;
    background-color: #000000;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
}

#anadir-fila:hover {
    transition: 0.5s cubic-bezier(0.39, 0.58, 0.57, 1);
    ;
    background-color: #9EA7AF;
}

#limpiar-formato {
    font-size: 15px;
    float: right;
    background-color: #df9818;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

#limpiar-formato:hover {
    transition: 0.5s cubic-bezier(0.39, 0.58, 0.57, 1);
    ;
    background-color: hsla(34, 72%, 45%, 1);
}

#tabla_alumnos_visita {
    width: 100%;
    padding: 0px;
}

#tabla_alumnos_visita td {
    background-color: transparent;
}

#tabla_alumnos_visita .campo-formulario {
    width: 50%;
}


/*---------------------------TERMINA FORMATO SOLICITUD--------------------*/


/*-----------------------------POP UP-------------------------------------*/

.overlay {
    background: rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    visibility: hidden;
}

.overlay.active {
    visibility: visible;
}

.popup {
    background: #F8F8F8;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    padding: 10px;
    text-align: center;
    width: 800px;
    height: 500px;
    overflow-y: scroll;
}


/*-----------------------------TERMINA POP UP------------------------------*/

button {
    background: transparent;
    border: none;
    cursor: pointer;
}

button:focus {
    outline: none;
}


/*-------------ERROR MESSAGES--------------*/

@import url('http://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

.isa_info,
.isa_success,
.isa_warning,
.isa_error {
    margin: 10px 0px;
    padding: 15px;
    font-weight: bold;
    text-align: center;
}

.isa_info {
    color: #00529B;
    background-color: #BDE5F8;
    transition: 1s ease-in;
}

.isa_success {
    color: #4F8A10;
    background-color: #DFF2BF;
    transition: 1s ease-in;
}

.isa_warning {
    color: #9F6000;
    background-color: #FEEFB3;
    transition: 1s ease-in;
}

.isa_error {
    color: #D8000C;
    background-color: #FFD2D2;
    transition: 1s ease-in;
}

.isa_info i,
.isa_success i,
.isa_warning i,
.isa_error i {
    margin: 13px 0;
    font-size: 1.5em;
    vertical-align: middle;
}

@media screen and (max-width: 800px) {
    .login-page {
        width: 90vw;
        padding: 20px 0 0;
        margin: auto;
    }
}


@media screen and (max-width: 600px) {
    .login-page {
        width: 90vw;
        padding: 20px 0 0;
        margin: auto;
    }
}

@media screen and (max-width: 400px) {
    .login-page {
        width: 90vw;
        padding: 20px 0 0;
        margin: auto;
    }
}

form h1 {
    padding: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;

}

form h2 {
    padding: 14px;
    font-weight: 400;
    color: #00733f;
    letter-spacing: 0.1em;
}