@charset "utf-8";
.header p{
    font-size: 1.5vw;
}
.header{
	color: #FFF;
	background: #0a4661;
	height: 45px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}
.optionsBar{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.optionsBar span {
    color: #FFF;
    font-size: 2.3vw;
    font-family: 'GothamBook';
    text-transform: uppercase;
    margin-left: 30px;
}
.photouser {
    margin-left: 30px;
    width: 25px;
    height: 25px;
}
.close{
	width: 25px;
    height: 25px;
}
.optionsBar a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-left: 30px;
}


/* css general */

a:hover {
    text-decoration: none;
}
a{
    color: black;
}
/* css menu */
.menu{   
    height: auto;    
    padding-top: 1rem;
    
}

.menu ul {    
    list-style: none;
    display: flex;
    flex-direction: column;    
    justify-content:flex-start; 
    align-items:flex-start;  
    padding-bottom: 1rem;   
    
}

.menu ul li {
    font-size: 17px;
    margin-top: 35px;
    width: 65%;    
    color: white;
    margin-right: 1rem;
    text-align: left;
    padding: 1px 1px 1px 1px;
    
    background-color: #007bff;
    
}

#submenu {
    display: none;
    background-color: transparent;
    position: relative;
    margin-left: 0px;
    color: white;

}
#submenu a{
    color: navy;
}


.menu ul li:hover {
    background-color: #007bff;
}

.menu ul li:hover #submenu {
    display: block;
}
#burger{   
    color: #0a4661;
    font-size: 25px;
    margin-top: 10px;
    margin-left: 20px;
}
#submenu a{
    color: white;
}
 #btnCapturar{
    position: fixed;
    width: 149px;
    height: 43px;
    bottom: 8px;
    right: 30px;
    background-color: #343a40;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 19px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;}

/* borrar elementos */

.data_delete{
    padding: 25px;
    width: 90%;
    background-color: #ffc107;
    text-align: center;
    margin-left: 5%;
}
.data_delete a{
    margin: 0px;
    font-size: 3.5vw;
    
}

/* direccionado del menu segun tamaño de la pantalla */

@media(min-width:1024px) {
    /*barra superior*/
    .header{
	color: #FFF;
	background: #0a4661;
	height: 45px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}
.optionsBar{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.optionsBar span {
    color: #FFF;
    font-size: 11pt;
    font-family: 'GothamBook';
    text-transform: uppercase;
    margin-left: 30px;
}
.photouser {
    margin-left: 30px;
    width: 25px;
    height: 25px;
}
.close{
	width: 25px;
    height: 25px;
}
.optionsBar a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-left: 30px;
}
    
.menu{   
    height: 70px;   
    padding-top: 1rem;
}

.menu ul { 
    
    list-style: none;
    display: flex;
    flex-direction: row;    
    justify-content:space-around; 
    align-items: center;  
    
    
}

.menu ul li { 
    background-color: #007bff;
    font-size: 18px;
    margin-top: auto;
    width: 148px;
    height: 37px;
    color: white;
    margin-right: 1rem;
    text-align: center;
    padding: 1px 1px 1px 1px;
    
}

#submenu {
    display: none;
    background-color: transparent;
    position: absolute;
    margin-left: -41px;
    color: white;

}
#submenu ul li{
    color: red;
}

.menu ul li:hover {
    background-color:cadetblue;
    color: white;
}

.menu ul li:hover #submenu {
    display: block;
    color: white;
}
#menu {
    display: block;
}

#burger {
    display: none;
}
#submenu a{
    color: white;
}

    
   
