* {
    box-sizing: border-box;
  }
  
body 
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}
 

li:hover
{    
    background-color: #040404;
    color:  #9caffa;
}

#booton2:active {
    background-color: red;
    color: white;
}

#booton3:active {
    background-color: red;
    color: white;
}


#booton1:focus {
    background-color: blue;
    color: white;
}

#booton2:focus {
    background-color: blue;
    color: white;
}

#booton3:focus {
    background-color: blue;
    color: white;
}


#booton1:hover {
    background-color: blue;
    color: white;
}

#booton2:hover {
    background-color: blue;
    color: white;
}

#booton3:hover {
    background-color: blue;
    color: white;
}

table tr:hover 
{
    background-color: #9c9df3;
    cursor: pointer;
}


.my-class-form-control-group
{
    display:flex;
    align-items:Center;
}

.contenedor 
{                    
    background-color: white;
    padding-left: 28%;
    padding-right: 30%;
    text-align: center;
    font-size: 12px;
    color: black;    
    align-items: center;
    justify-content: center;            
    height: 80vh;
    border-color: black;
    
}

.contenedorcentral 
{                    
    background-color: white;
    text-align: center;
    font-size: 14px;
    color: black;    
    align-items: center;
    justify-content: center;            
}

.formulario
{
    background-color: white;
    color: darkblue;
    border-radius: 15px;        
    padding: 10px 20px;        
    opacity: 0.9;
    border-style: solid;
}    

label 
{
    font-weight: bolder;        
}

.yyy
{
    background-color: #e0f5b0;
    border: 1px solid #000;
}

.input-group-prepend
{
    background-color: red;
}

.letra
{
    font-size: 15px;
}


input[type="text"], 
input[type="password"]
{
    margin-top: 0px;  
    /*font-size: 12px;  top era 10px             */
}

input[type="text"]:focus, 
input[type="password"]:focus
{
    outline: 0;        
    background: white;         
    border: 1px solid red;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
}
    
input[type="submit"]:hover 
{ 
    opacity: 0.8; 
    color: white; 
    transition-delay: 0.2s;
    transform: scale(1.06);
} 

/*
input[type="submit"]
{
    height: 40px;
    margin: 0;
    padding: 0 20px;       
    vertical-align: middle;
    border: 0;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;    
}
*/



     

.logito
{          
    text-align: left;   
    width: 300px;
}

.efectocontorno 
{
    text-align: center; 
    font-family: Arial;
    font-weight: bold; 
    font-size: 24px;         
    color: black; /* #fff;          */
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}

#bloqueboton
{
    height: auto;        
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

#boton1
{
    align-self: center;
    background-color: blue;
    color: white;
    font-size: 15px; 
    border-radius: 10px;
}

#boton2
{
    align-self: center;
    background-color: red;
    color: white;
    font-size: 15px; 
    border-radius: 10px;
}  

#boton3
{
    align-self: center;
    background-color: blue;
    color: white;
    font-size: 15px; 
    border-radius: 10px;
}  

.ui-autocomplete 
{ 
    z-index:2147483647;
    height: 210px;        
    overflow-y: scroll; 
    overflow-x: hidden;
    font-size: 14px;           
    font-weight: bold;
    background-color: #d3e8a3;     
} 

.ui.autocomplete:hover
{
    color: darkblue;
    background-color: red;
}

.ui-autocomplete:focus
{
    display: none;
}        



#contenedor_carga{
    background-color: rgba(250,240,245,0.5);
    width: 100%;    
    height: 100%;           
    position: fixed;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10000;
}
    
#carga{
    border: 15px solid #ccc;
    border-top-color : #f4266A;
    border-top-style: groove;        
    /*height: 50px;
    width: 50px;
    top: 50px; */
    left: 50px;
    right: 0;
    bottom: 0; 
    height: 30px;
    width: 30px;

    border-radius: 100%;
    position: relative;    

    /*margin: auto;*/
    -webit-animation: girar 1.5s linear infinite;
    -o-animation: girar 1.5s linear infinite;
    animation: girar 1.5s linear infinite;
}

    
@keyframes girar{
from { transform: rotate(0deg);}        
to  { transform: rotate(360deg);}        
}



.parpadeo {
    text-align: center;
    font-size: 18px;
    font-weight: bolder;
    color: red;
    animation: parpadeo 1s ease-in-out infinite;
}
    
@keyframes parpadeo {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}







@media (max-width:768px) and (min-width:300px) 
{
 
    .logito
    {          
        text-align: left;   
        width: 300px;
    }

    h1{
        font-size: 20px;
    }

    h4{
        font-size: 14px;
    }
    
    .letra
    {
        font-size: 12px;
    }
    

    .contenedor 
    {                    
        background-color: white;
        padding-left: 23%;
        padding-right: 30%;
        text-align: center;
        font-size: 14px;
        color: black;    
        align-items: center;
        justify-content: center;            
        height: 80vh;
        border-color: black;       
    }
}


.nav-tabs > li {    
    font-weight: bold;
    background-color: white;
    color:blue;    
}

.nav-tabs > li:hover {    
    font-weight: bold;
    background-color: white;
    color: #02023d;
}


/*
.nav-tabs > li.active > a, 
.nav-tabs > li.active > a:focus, 
.nav-tabs > li.active > a:hover{
font-size: 12px;
font-weight: bold;
background-color: darkblue;
color: white;
}



.nav-tabs > li > a, 
.nav-tabs > li > a:focus {    
font-size: 12px;
font-weight: bold;
background-color: lightblue;
color: black;
}

.nav-tabs > li > a:hover{
font-size: 12px;
font-weight: bold;
background-color: #4008f8;
color: white;
}


.nav-tabs > li > a:active{
font-size: 12px;
font-weight: bold;
background-color: red;
color: white;
}

*/