.bg-azul {
    background-color: #003B71;
    box-shadow: 0 25px 20px -20px rgba(234, 160, 10, 1);
}

.fondoPrincipal{
    background-color: #F4F4F4;
}

/*panel administrativos estilos*/
.menu{
    background: rgb(0,22,42);
    background: linear-gradient(90deg, rgba(0,22,42,1) 0%, rgba(0,59,113,1) 50%, rgba(0,124,186,1) 100%);
    padding: 5px 0px;
    box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.4);
    color: white;
}

.amarillo{
    color: #EAA00A;
}

.animacionCard:hover{
    box-shadow: 0px 5px 10px 0px rgba(2,22,174,0.5);
}


.menu-lateral{
    background: #001C35;
    color: #FFFFFF;
}

/*login*/
.login-box {
    width: 320px;
    height: 400px;
    background: #00172c;
    color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
}

.login-box .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

.login-box h1 {
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
}

.login-box label {
    margin: 0;
    padding: 0;
    font-weight: bold;
    display: block;
}

.login-box input {
    width: 100%;
    margin-bottom: 20px;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    border: none;
    border-radius: 12px;
    border-bottom: 1px solid #fff;
    background: #FFFFFF;
    outline: none;
    height: 40px;
    color: #000F3F;
    font-size: 16px;
}

#password_clave::placeholder {
    color: darkgrey;
}

.login-box input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    background: #003B71;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
}

.login-box input[type="submit"]:hover {
    cursor: pointer;
    background: #ffc107;
    color: #000;
    font-weight: bold;
}

.login-box a {
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: darkgrey;
}

.login-box a:hover {
    color: #fff;
}
.direccion{
    border-radius: 5px;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
}
.cajita{
    border-radius: 5px;
    padding: 0.5rem 1rem;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
}
.spa_button{
    margin-bottom: -13px;
}

/*imagen cargar*/
.center {
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;

}
.form-input {
  width:250px;
  padding:20px;
}

.form-input img {
  width:100%;
  display:none;
  margin-bottom:20px;
}

.file-select {
  position: relative;
  display: inline-block;
}

.file-select::before {
  background-color: #003B71;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  content: 'Seleccionar'; /* testo por defecto */
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.file-select input[type="file"] {
  opacity: 0;
  width: 150px;
  height: 32px;
  display: inline-block;
}

#src-file1::before {
  content: 'Seleccionar';
}

.colorBoton{
    background-color: #003B71;
}

/*editar persona*/
.pdfvisualizador{
    margin: auto;
    display: block;
    width: 100%;
    height: 100vh;
    border-radius: 10px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1),0px 10px 15px -3px rgba(0,0,0,0.1),0px 10px 15px -3px rgba(0,0,0,0.1);
}

/*seccion permiso*/
.bode1{
    border: 1px solid #003B71;
    border-radius: 10px;
    padding: 1rem;
}

.bode2{
    border: 1px solid #007105;
    border-radius: 10px;
    padding: 1rem;
}

#fondoCard{
    background-color: #003B71;
    color: white;
}

#alinea{
    text-decoration: none;
}

/* estilos de inputs de llenado ------------------------------- */
.group { 
  position:relative; 
  margin-bottom:10px; 
}
.input {
  font-size:16px;
  text-align: center;
  padding:10px 10px 10px 5px;
  display:block;
  width:90%;
  border:none;
  border-bottom:1px solid #003B71;
}
.input:focus {
    outline:none; 
}

/* LABEL ======================================= */
.label {
  color:#003B71; 
  font-size:16px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:30%;
  top:18px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

.adicional{
    left:10%;
    top:-13px; 
}

/* active state */
.input:focus ~ .label, .input:valid ~ .label        {
  top:-10px;
  font-size:14px;
  color:#007CBA;
}

/* BOTTOM BARS ================================= */
.bar {
    position:relative; 
    display:block; 
    width:90%;
}

.bar:before, .bar:after {
  content:'';
  height:2px; 
  width:0;
  bottom:0px; 
  position:absolute;
  background:#EAA00A; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
.input:focus ~ .bar:before, .input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%; 
  width:80%; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/*card notification*/
.tarjetita{
    margin: 0.5rem 2rem;
    background-color: #C5F0FD;
    border-radius: 5px;
    padding: 1rem;
}

.tarjetita2{
    margin: 0.5rem 2rem;
    background-color: #C5E1FD;
    border-radius: 5px;
    padding: 1rem;
}

.tarjetita3{
    margin: 0.5rem 2rem;
    background-color: #FFFB9B;
    border-radius: 5px;
    padding: 1rem;
}

.tarjetita4{
    margin: 0.5rem 2rem;
    background-color: #9BFFAE;
    border-radius: 5px;
    padding: 1rem;
}

.tarjetita5{
    margin: 0.5rem 2rem;
    background-color: #FFA9B7;
    border-radius: 5px;
    padding: 1rem;
}

.tarjetita6{
    margin: 0.5rem 2rem;
    background-color: #D5D5D5;
    border-radius: 5px;
    padding: 1rem;
}



/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from { background:#5264AE; }
    to    { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
    from { background:#5264AE; }
    to    { width:0; background:transparent; }
}
@keyframes inputHighlighter {
    from { background:#EAA00A; }
    to    { width:0; background:transparent; }
}

/*seguimiento*/
.padre{
    height:100%;
    width:100%;
    text-align: center;
}

.hijo{
    height:50vhv;
    width:50%;
    margin:0px auto;
}

@media only screen and (max-width: 800px) {
    .hijo{
        width:auto;
    }
}